自定义博客皮肤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)
  • 收藏
  • 关注

原创 第五章

#include using namespace std;class Student{public: void get_value()  {cin>>num>>name>>sex;} void display( )   {cout    cout    cout private:  int num;  char name[10];  char s

2015-05-21 11:26:59 329

原创 第四章

#include using namespace std;class Complex {public:  Complex(){real=0;imag=0;}  Complex(double r,double i){real=r;imag=i;}  double get_real();  double get_imag();  void display(); pr

2015-05-21 11:07:47 232

原创 TimeDate

#include class Time{public:      Time(){}      Time(int h,int m,int s)      {       hour=h;       minute=m;       second=s;      }      friend istream & operator>>(istream &,Time &

2015-05-12 18:30:31 457

原创

2015-04-20 21:55:13 188

原创 第三章

第四题#include using namespace std;class Student {public:   Student(int n,float s):xuehao(n),chengji(s){}   void display();  private:   int xuehao;   float chengji; };void Stude

2015-04-20 08:22:59 293

原创 第二章

第二题#include using namespace std;class Time {public:   void set_time(void)    {cin>>hour;     cin>>minute;     cin>>sec;    }   void show_time(void)    {cout   private: int

2015-04-19 21:45:21 248

原创 第一章作业

第七题#include using namespace std;int max(int a,int b,int c){if(b>a) a=b; if(c>a) a=c; return a;}int max(int a,int b){if(a>b) return a; else return b;}int main(){    int a,

2015-04-19 21:12:43 195

原创 第一章作业

第七题#include using namespace std;int max(int a,int b,int c){if(b>a) a=b; if(c>a) a=c; return a;}int max(int a,int b){if(a>b) return a; else return b;}int main(){    int a,

2015-04-19 20:11:22 519

空空如也

空空如也

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

TA关注的人

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