自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 第7章第6题

#include #include using namespace std;struct student{int num; char name[20]; double score;};int main(){student stud[3]={1001,"Li",78,1002,"Wang",89.5,1004,"Fun",90},stud1[3];

2015-06-09 13:03:18 359

原创 第7章第5题

#include #include using namespace std;struct staff{int num; char name[20]; int age; double  pay;};int main(){staff staf[7]={3898,"Fan",34,1200,3899,"Wang",23,6740,2448,"Chen",54,77

2015-06-09 12:55:17 366

原创 第7章第4题

#include #include using namespace std;                void fun1(){int a[10]; ofstream outfile1("f1.dat"),outfile2("f2.dat");   if(!outfile1)                          {cerr   ex

2015-06-08 22:34:18 277

原创 第7章第3题

#include #include using namespace std;int main(){ for(int n=1;n cout  return 0;}

2015-06-08 22:03:26 253

原创 第7章第2题

#include #include using namespace std;int main(){float a[5]; cout int i=0; for( i=0;i  cin>>a[i]; cout for(i=0;i  cout return 0;}

2015-06-08 21:58:25 273

原创 第7章第1题

#include #include using namespace std;int main(){float a,b,c,s,area; cout cin>>a>>b>>c; if (a+b  cerr else  if(b+c  cerr else  if (c+a  cerr else  {  s=(a+b+c)/2;

2015-06-08 21:46:43 251

原创 学生信息

#include "iostream"#include "string"#include "list"using namespace std;class Student{protected:string Name;string Num;string Major;public:Student(){}Student(strin

2015-06-01 23:44:06 289

原创 第六章第6题

#include using namespace std;class Shape{public: virtual double area() const =0;                                }; class Circle:public Shape{public:Circle(double r):radius(r){}

2015-06-01 23:43:54 276

原创 创建三角类

#include #include "cmath"using namespace std;class Shape { public:virtual double getArea() const =0;virtual void print() const =0;  virtual ~Shape(){}}; class Circle : publ

2015-06-01 22:22:12 301

原创 第5章第10题

#include  #include  using namespace std;  class Teacher                                 {public:    Teacher(int,char [],char);                  void display();                         

2015-05-18 14:31:01 258

原创 第5章第9题

#include  #include  using namespace std;  class Teacher   {public:     Teacher(string nam,int a,char s,string tit,string ad,string t);     void display();    protected:      string na

2015-05-18 14:23:43 207

原创 第5章第4题

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

2015-05-18 14:19:27 222

原创 datetime

#include "iostream"    using std::cin;  using std::cout;  using std::endl;  using std::istream;  using std::ostream;      class Time  {  protected:    int hour;    int minute

2015-05-18 14:12:39 224

原创 第5章第3题

#include  using namespace std;  class Student                       {public:                                void get_value();    void display( );   protected :                          

2015-05-18 13:40:59 211

原创 第5章第2题

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

2015-05-18 13:29:04 455

原创 第5章第1题

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

2015-05-18 13:21:21 258

原创 第四章第7题

#include#include#includeusing namespace std;class Teacher;class Student{private:int num;string name;string sex;string position;public:Student(){};Student(int n,string a,strin

2015-04-27 22:36:58 325

原创 第四章第6题

#include  using namespace std;  class Complex  {  public:      Complex(){real = 0; imag = 0;}      Complex(double r, double i){real =r; imag = i;}      Complex operator+(double);     

2015-04-27 22:30:59 280

原创 第四章第5题

#include using namespace std;class Matrix {public:   Matrix();   friend Matrix operator+(Matrix &,Matrix &);   friend ostream& operator   friend istream& operator

2015-04-27 22:18:46 295

原创 第四章第4题

#include using namespace std;class Matrix                                          //定义Matrix类 {public:   Matrix();                                          //默认构造函数   friend Matrix operator

2015-04-27 22:02:52 261

原创 第四章第3题

#include using namespace std;class Complex{public: Complex(double r=0,double i=0):real(r),imag(i) { }; friend Complex operator +(Complex &c1,Complex &c2); friend Complex operator

2015-04-27 21:49:46 396

原创 第四章第2题

#includeusing namespace std;class Complex{public:Complex(){real=0;imag=0;}Complex(double r,double i){real=r;imag=i;}Complex operator+(Complex &c2);Complex operator-(Complex &c2);Comple

2015-04-27 21:46:30 254

原创 第四章第1题

#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();  

2015-04-27 21:40:59 259

原创 字符串string

#ifndef _STRING_#define _STRING_#include "iostream"using std::ostream;using std::istream;class String{private:char *s;public:String();String(int n

2015-04-27 21:21:45 207

原创 c++第12题

#include using namespace std;template class Compare{public:Compare(numtype a,numtype b):x(a),y(b){}numtype max();numtype min();private:numtype x;numtype y;};template numt

2015-04-22 14:23:04 300

原创 c++第11题

#include using namespace std;class Date;class Time{       public:Time(int,int,int);void display(Date&);private:int hour;int minute;int sec;};class Date{public:Date(int,

2015-04-22 14:22:53 268

原创 c++第10题

#include using namespace std;class Date;class Time{public:Time(int,int,int);friend void display(Date&,Time&);private:int hour;int minute;int sec;};class Date{public:Dat

2015-04-22 14:21:11 365

原创 c++第9题

#include #include #include using namespace std;class Transaction{public:Transaction(int n=0,double p=0,intq=0,doubled=1):num(n),price(p),quantity(q),discount(d){}static double averag

2015-04-22 14:19:05 417

原创 c++第8题

#include using namespace std;class Student{public:Student(int n,float s):num(n),score(s){}//构造函数void change(int n,floats){num=n;score=s;}//类赋值voiddisplay(){cout private:       intnum

2015-04-22 14:15:25 405

原创 c++第7题

#include using namespace std;class Student{public:Student(int n,float s):num(n),score(s){}//构造函数void change(int n,float s) const {num=n;score=s;}//类赋值void display() const {coutpriv

2015-04-22 14:12:00 904

原创 c++第5题

#include#include using namespace std;class Student{private:int num;//学号double score;//分数public:friend istream& operator>>(istream& input,Student& s);friend ostream& operatorfrien

2015-04-22 14:10:07 338

原创 c++第4题

#include#include using namespace std;class Student{public:int num;//学号double score;//学分};istream& operator >>(istream&input,Student& s){coutinput>>s.num;coutinput>>s.score;

2015-04-22 14:06:39 655

原创 c++第三章第三题

#include using namespace std;class Date{public:Date(int=1, int=1, int=2005);void display();private:int month;int day;int year;};Date::Date(int m, int d, inty):month(m),day(d),y

2015-04-22 13:55:52 245

原创 类的图像

2015-04-20 23:02:18 299

原创 张言欣0143892

张言欣0143892

2015-04-14 17:08:32 444

空空如也

空空如也

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

TA关注的人

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