自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 4.17

#includeusing namespace std;class Student{  public:   Student(float number1,float score1);   void show();  private:   float number;   float score;};Student::Student(float numbe

2015-05-23 10:53:31 277

原创 作业3.3

#includeusing namespace std;class Date{  public:   void printDate();   void GetYear();   void GetMonth();   void GetDay();   void SetDate(int Y,int m,int d);  private:   int Ye

2015-05-03 17:05:30 438 1

原创 作业3.2

#includeusing namespace std;const double p=3.14;class cylinder{public: cylinder(double r,double h) { radius=r;   high=h; } double volume();  void vol();private: double ra

2015-04-22 17:51:04 492 1

原创 作业3.1

#includeusing namespace std;const double p=3.14;class Circle{   public:          Circle(double r)          {   radius=r;          }          area()         {double s;      

2015-04-22 17:13:25 419 1

原创 2.30习题

#include#includeusing namespace std;int sroot(int i){ return  sqrt(i) ;}long sroot(long l){ return sqrt(l);}double sroot(double d){ return  sqrt(d);}int main(){  int i=4;

2015-04-01 19:18:39 359 1

原创 2.29习题

#includeusing namespace std;int main(){ int i;    int a[20] = {1,1}; for(i = 2;i  a[i] = a[i-2] + a[i-1]; for(i = 0;i {  if(i % 4 ==0)   cout } int *p=new int[20]; cout

2015-04-01 18:58:58 426 1

空空如也

空空如也

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

TA关注的人

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