自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 第三章

2#include using namespace std; class Date { public: Date(int,int,int); Date(int,int); Date(int); Date(); void display(); private: int month; int day; int year; }; Date:

2015-06-09 19:36:39 190

原创 第七章

1 #include #include using namespace std; int main() { double a,b,c,s,area; cout<<"please input a,b,c:"; cin>>a>>b>>c; if (a+b<=c) cerr<<"a+b<=c,error!"<<endl; else if(b+c<=a)

2015-06-09 19:08:47 193

原创 第二章

1#include using namespace std; class Time { public: void set_time(); void show_time(); private: //成员改为公用的 int hour; int minute; int sec; }; void Time::set_tim

2015-06-02 19:26:48 184

原创 第五章

1#include using namespace std; class Student { public: void get_value() {cin>>num>>name>>sex;} void display( ) { cout<<"num: "<<num<<end; cout<<"name: "<<name<<endl; cout<<"sex: "<<sex<<endl;

2015-05-26 17:45:46 148

原创 第四章

6 #include void main() { int a,b; float x,y; char c1,c2; scanf("a=%d b=%d",&a,&b); scanf(" %f %e",&x,&y); scanf(" %c %c",&c1,&c2); } 7 #include void main()   {

2015-05-19 19:01:46 176

原创 作业

"code" class="cpp">#include   using namespace std;  class String  {  public:      String();       String(const char*const ch);       int getlen()const { return len;}                      friend ostrea

2015-05-12 22:21:01 149

原创 第一章

1.   This is a C++ program       2.   a+b=33        3.   输出最小的值 4. #include   using namespace std;  int main()  {     int a,b,c;     cin>>a>>b;     c=a+b;     cout"a+b="   return 0;  }

2015-05-12 22:16:41 133

原创 第三章总结

1

2015-04-20 22:33:53 179

空空如也

空空如也

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

TA关注的人

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