自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 C++程序设计页面截图

运行页面:首先进入登录页面输错密码得重新输入输入正确密码进入图书馆系统按1进入首页按4进入管理增加书籍删书书库查书

2014-06-21 20:22:06 667 1

原创 C++程序设计

#include #include #include using namespace std;void manage();//管理页面 void find();//查书void displaymain();//菜单显示void denglu(){cout<<endl<<endl<<endl<<endl<<endl;cout<<endl<<endl<<endl<<endl<<en

2014-06-21 20:20:04 684 1

原创 C++程序设计图书信息管理系统(页面)

图书信息管理系统要求:设计一个程序来管理图书信息,能实现图书相关信息的具备数据的输入、查找、删除等功能,能实现。具体功能细节可以根据自己理解情况进行增加。程序代码#include #include #include using namespace std;void manage();//管理页面 void find();//查书void displa

2014-06-20 14:40:04 3062 2

原创 C++典型程序

1、打印出100到200之间的所有素数(即除1和它本身再没有其他约数的数)。#include #include void main(){ int i,j; for (i=100;i<=200;i++) { int temp=int(sqrt(i)); for (j=2;j<=temp;j++) if (i%j==0)

2014-06-19 21:25:31 756 1

原创 我的智能安防小车

温湿度显示模块

2014-06-17 13:42:13 943 2

原创 第十二周作业

8-1#include using namespace std;struct date{int year;int month;int day;};struct {int num;char name[20];date birthday;char addr[30];}student={1001,"HMW",{1992,01,07},"shangtou"};int ma

2014-05-25 21:12:24 497 1

原创 第九周作业

6-1#include using namespace std;int main(){int a=10;int *p;p=&a;cout<<"a= "<<a<<endl;cout<<"p= "<<p<<endl;cout<<"&a= "<<&a<<endl;cout<<"*p= "<<*p<<endl;cout<<"&p="<<&p<<endl;

2014-05-04 09:18:17 624 1

原创 第七/八周作业

5-1#include using namespace std; void display(){cout<<"hi,everyone"<<endl;} int main() { display(); return 0; } 5-2

2014-04-21 09:40:14 503 1

原创 第六周作业

4-1#includeusing namespace std;int main(){int a[15];int i;for(i=1;i<16;i++)a[i]=2*i+1;for(i=1;i<16;i++){cout<<a[i]<<'\t';if(i%5==0) cout<<endl;}return 0;}

2014-04-15 00:54:56 460 1

原创 第五周作业

77#include using namespace std; int main() { int a,n,i,k,f=0,s=0; cout << "请输入数字 a:"<<endl; cin >> a; cout << "请输入a的位数n:"<<endl; cin >> n; for(;n>0;n--) {

2014-04-07 23:07:44 487 2

原创 第四周作业

5#include using namespace std; int main() { int i=0; double a=1,f=1; while (f>=10e-6) { i++; f=f/i; a+=f; } cout << "e = "

2014-04-01 00:16:09 442 1

原创 第三周作业

0#includeusing namespace std;int main(){cout<<"number of bytes in int is: "<<sizeof(int)<<endl;cout<<"number of bytes in int is: "<<sizeof(int)<<endl;cout<<"number of bytes in long int is: "<<

2014-03-24 10:22:58 500 1

原创 C++第二周作业

/********************************* *** 功能:输出班级、姓名、学号**** *********************************/ #include using namespace std; int main() { cout<<"班级:自动1122班\n"; cout<<"姓

2014-03-17 22:17:05 545 1

空空如也

空空如也

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

TA关注的人

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