- 博客(9)
- 收藏
- 关注
原创 自动班“C++程序设计",日历记事本
6、日历记事本要求:带有日程提醒功能的日历。显示信息:用户可以向前查询前一个月的日期,也可以向后查询下一个月的日期。定时提醒:用户可以针对某一天来添加,删除和编辑这一天的日程提醒信息,当系统时间和提醒时间相吻合时,给出具有提示信息的对话框。查询信息:用户可以查询到某个月的所有的提示信息。#include#include#include#in
2014-06-21 16:42:10 1282 2
原创 第8章 C渣渣
习题1#includeusing namespace std;struct student{ int num; char name[50]; int english; int math; int chinese;};void print(student *p){ coutnum<<endl; coutname<<endl; c
2014-05-23 09:23:08 669 2
原创 6周作业
习题1#include#includeusing namespace std;int main(){ int a[5]; int i,j,t; cout<<"输入5个数值"<<endl; for(i=0;i<5;i++) cin>>a[i]; cout<<endl; for(i=0;i<5;i++) for(j=0;j<5-i;j++)
2014-04-11 09:02:35 605 1
原创 第四周-自动班作业及实验
1.完成课本每一个编程题。要求先画出流程算法图或N-S图,然后编程实现,有可能的话使用两种以上方法;(6).#includeusing namespace std;int main(){ double x,y; double z=0,i=-1; for(x=1;x<1e8;x+=2) { i=-i; y=1/x; y=y*i; z=z+y;
2014-03-28 09:36:10 627 1
原创 第三周作业
三角形公式/******三角形面积计算公式**************** by:lin **************************************/#include#include//调用包含有数学函数的头文件using namespace std;/*********** 公式 **********/float heron(f
2014-03-21 12:25:14 536 1
原创 第三章节实验
百钱百鸡#includeusing namespace std;int main(){ cout<<" 公鸡 "<<"母鸡 "<<"小鸡"<<endl; //定义三个整形变量x(公鸡),y(母鸡),z(小鸡) int x,y,z; int i=0; for(x=0;x<=20;x++) //循环语名for for(y=0;y<=33;
2014-03-21 09:31:38 495 1
原创 第二周作业
实验作业1.编写调式运行第一个C++程序,要求输出你的班级、姓名和学号;2.输入课本例题1.2,调试运行程序,并分析程序。3.分析程序中哪些是标识符,哪些是关键字。4.回答什么是程序、工程,源文件、目标文件、执行文件、编译预处理、名字空间、函数.、主函数。任務一/************************************** 屏幕显示:
2014-03-14 09:25:39 589 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人