问题及代码:
/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称:lily.cpp
*作者:李莉
*完成日期:2015年5月5日
*版本号:v1.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;
}
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(); // (4)
return 0;
}
运行结果:
心得体会:
看完课本做的还是比较顺利的,加油啊