自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 图书管理系统

/*************************************************** *************广东海洋大学图书管理系统*************** ***************************************************/ #include #include #include class book

2014-06-20 19:35:24 989 2

原创 第六章作业

/*编写程序,用指针输出显示数组各元素的值*/ #include using namespace std; int main() { int a[10],*p=a; for(int i=0;i<10;i++) a[i]=2*(i+1); for(;p<a+10;p++) cout<<*p<<" "; cout<<endl; return 0; }

2014-06-20 09:37:57 412 1

原创 第八周作业

/**说明下列程序的执行过程和运算结果**/ #include #include using namespace std; double squ(double); //函数原型的说明语句,可以只包含参数的类型 int main() //主函数 { double x; cout<<" please input x

2014-05-03 23:20:04 588 1

原创 第五周作业

/********课后练习题一*********/ #include #include using namespace std; int main() { int a[5],i,big; cout<<"请依次输入五个数字:\n"; for(i=0;i<5;i++) cin>>a[i]; cout<<"这五个数字是:\n"; for(i=0;i<5;i++) cout<<setw

2014-04-16 20:14:17 477 2

原创 第四周作业

/***********求自然对数e的近似值*************/ #include #include using namespace std; int main() { int i,j; double e=1,s=1; for(i=1;i<=10;i++) { for(j=1;j<=i;j++)

2014-04-07 00:29:03 420 1

原创 第三周作业

/********课本例题 1 **********/ #include using namespace std; int main() { cout<<"number of bytes in int is:"<<sizeof(int)<<endl; cout<<"number of bytes in long int is:"<<sizeof(long)<<endl; cou

2014-03-22 11:18:04 447 1

原创 第二周作业

第二周作业: /************************* ***** 个人信息 ****/ #include using namespace std; int main() { cout<<"班级:"<<"自动化1121班"<<endl; cout<<"学号:"<<"201211632131"<<endl; cout<<"姓名:"<<"

2014-03-13 21:05:41 480 2

空空如也

空空如也

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

TA关注的人

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