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

原创 4.22

#include#includeusing namespace std;class dot{public: dot(int a,int b); void show(); friend void dist(dot&,dot&);private: int x; int y;};dot::dot(int a,int b){ x=a; y=b;}void dot::sho

2015-07-01 09:57:17 345

原创 4.21

#include#includeusing namespace std;class student{public: student(string a,int b,int c); void show() { cout<<"name:"<<name<<" id:"<<id<<" score:"<<score<<" test:"<<test<<" number:"<<numbe

2015-06-29 15:29:43 415

原创 4.20

#include#includeusing namespace std;class book{public: book(int a,int b) { qu=a; price=b; } void show() { cout<<qu*price<<endl; } private: int qu; int price;};int main(){ book

2015-06-29 15:28:37 421

原创 4.19

#include#includeusing namespace std;class book{public: book(int a,int b) { qu=a; price=b; } void show() { cout<<qu*price<<endl; } private: int qu; int price;};int main(){ book

2015-06-29 15:27:40 347

原创 4.17&4.18

#include#includeusing namespace std;class student{public: void show() { cout<<name<<" "<<number<<" "<<test<<endl; } student(string x,int y,int z);friend void max(student *i);private: s

2015-06-29 15:24:10 331

原创 第三章作业

3.22#include#includeusing namespace std;class Circle{ public: void area(int x,double y); void show(); private: int radius; double Area;};void Circle::area(int x,double y){ radius=x;

2015-04-22 19:05:39 438 1

原创 魔方

#include#includeusing namespace std;class magic{public: void getdata();//输入初始成员函数 void setfirstmagic();//设置初始魔方成员函数 void generatemagic();//生成最终魔方成员函数 void printmagic();//显示魔方成员函数private: in

2015-04-22 18:22:12 527 1

原创 第二章作业

2.29#includeusing namespace std;const int n=20;int Fbi(int i,int j){ int t; t=i+j; return t;}int main(){ int *p,a; p=new int[n]; p[0]=1; p[1]=1; for(a=2;a<n;a++) { p[a]=Fbi(p[a-1]

2015-04-01 18:58:55 520 1

空空如也

空空如也

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

TA关注的人

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