第十一周项目0-是春哥啊

请在下面程序的横线处填上适当内容,以使程序完整,并使程序的输出为:

Name: 春哥

Grade: 19

/*
 *Copyright (c) 2015,烟台大学计算机学院
 *All gight reserved.
 *文件名称:Demo.cpp
 *作者:邵帅
 *完成时间:2015年05月25日
 *版本号:v1.0
*/
#include <iostream>
#include <cstring>
using namespace std;
class Person{
public:
    Person(char* s){
        strcpy(name,s);
    }
    void display( ){
        cout<<"Name: "<<name<<endl;
    }
private:
    char name [20];
};
class Student: public Person
{
public:
    Student(char* s, int g):Person(s)
    {grade=g;}
    void display1( ) {
        display();
        cout<<"Grade: "<<grade<<endl;
    }
private:
    int grade;
};
int main( )
{
    Student s("春哥",19);
    s.display1();
    return 0;
}

运行结果:

@ Mayuko

时间: 2024-12-23 08:13:13

第十一周项目0-是春哥啊的相关文章

第十一周上机实践项目0——是春哥啊

请在下面程序的注释处填上适当内容,以使程序完整,并使程序的输出为: Name: 春哥 Grade: 19 代码 #include <iostream> #include <cstring> using namespace std; class Person { public: Person(char* s) { strcpy(name,s); } void display( ) { cout<<"Name: "<<name<<

第十一周项目-0

#include <iostream> #include <cstring> using namespace std; class Person { public: Person(char* c) { strcpy_s(name,c);//本来是strcpy的,但是vs2005以后的版本都要改写成strcpy_s /*mkdir改写为 _mkdir fopen"改写为 fopen_s stricmp改写为 stricmp_s strcpy改写为strcpy_s*/ } v

【项目0 - 是春哥啊】

请在下面程序的横线处填上适当内容,以使程序完整,并使程序的输出为: Name: 春哥 Grade: 19 #include <iostream> #include <cstring> using namespace std; class Person{ public: Person(char* s){ strcpy(name,s); } void display( ){ cout<<"Name: "<<name<<endl;

第十一周项目1

#include <iostream> using namespace std; class Stu { public: Stu (int n,string nam); void display(); protected: int num; //学号 string name; //姓名 }; Stu::Stu(int n,string nam ) { num=n; name=nam; } void Stu::display() { cout<<"学号:"<

十一周 项目三 点类

#include<iostream> #include<Cmath> using namespace std; class Point //定义坐标点类 { public: Point():x(0),y(0) {}; Point(double x0, double y0):x(x0),y(y0){}; void PrintPoint(); //输出点的信息 double getx() { return x; } double gety() { return y; } protect

十一周 项目2 职员有薪水了 扩展

#include <iostream> #include <cstring> using namespace std; class CPerson { protected: char *m_szName; char *m_szId; int m_nSex;//0:women,1:man int m_nAge; public: CPerson(char *name,char *id,int sex,int age); void Show1(); ~CPerson(); }; CPer

十一周 项目2 职员有薪水了

#include <iostream> using namespace std; class CPerson { protected: string m_szName; string m_szId; int m_nSex;//0:women,1:man int m_nAge; public: CPerson(string name,string id,int sex,int age); void Show1(); ~CPerson(); }; CPerson::CPerson(string n

十一周 项目4 类族的设计

#include <iostream> #include <cmath> using namespace std; class Point { public: Point(double x=0,double y=0); void setPoint(double,double); double getx() { return x; } double gety() { return y; } void display(); protected: double x,y; }; class

十一周 项目4 类族的设计 完整版

#include <iostream> #include <cmath> using namespace std; class Point { public: Point(double x=0,double y=0); void setPoint(double,double); double getx() { return x; } double gety() { return y; } void display(); protected: double x,y; }; Point