自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 课程设计(第三题)

3、职工综合信息管理系统要求:设计一个程序来管理职工较全面数据信息,具备数据的输入、查找、删除等功能。具体功能细节可以根据自己理解情况进行增加。

2014-06-21 17:26:05 555

原创 第四章作业

例4.1#include using namespace std;int main(){ int a[10],i; for(i=0;i<10;i++) a[i]=i*2+2; for(i=0;i<10;i++) { cout<<a[i]<<'\t'; if((i+1)%5==0) cout<<endl; } return 0;

2014-05-09 11:22:58 523 1

原创 第三章作业

习题5#include using namespace std; int main() { double e=1,f=1; int i=0; while(1/f>=10e-6) { i++; f=f*i; e=e+1/f; } c

2014-04-04 10:30:35 459 2

原创 第三周作业

/*例2.1*/#include#includeusing namespace std;int main(){ bool flag =true; cout<<flag<<endl; cout<<boolalpha<<flag<<endl; cout<<flag+5<<endl; flag=0; cout<<"执行语句flag=0;后flag的值为:"<<boolalpha<<

2014-03-30 19:38:31 411 1

原创 第二周作业

/*功能:输出班级、姓名、学号*/#includeusing namespace std;int main(){ cout << "班级:自动化1123\n"; cout << "姓名:池德健\n"; cout << "学号:201211632306\n"; return 0;}/*功能:求两个数的最大值*/#includeusing namespace std;int

2014-03-16 20:35:43 457 2

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除