• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++面向对象类的实例题目七

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

题目描述:

编写两个有意义的类,使一个类嵌套在另一个类中。

分析:

本题涉及两个类student和cdegree,前者为学生类,包含学生的学号(nubner),姓名(name)和成绩(degree),而成绩degree是类cdegree的对象。cdegree类有3个数据成员,分别为数学(math),英语(english)和物理(phy)分数。


程序代码:

#include<iostream>
#include<string>
using namespace std;
class Student 
{
	public:
		void getdata();
		void showdata();
	private:
		string number;
		string name;
		class Cdegree
		{
			public:
				double math;
				double english;
				double phy;
		}degree;				
};
void Student::getdata() 
{
	cout<<"Input number:";
	cin>>number;
	cout<<"Input name:";
	cin>>name;
	cout<<"Input degree of math:";
	cin>>degree.math;
	cout<<"Input degree of english:";
	cin>>degree.english;
	cout<<"Input degree of physics:";
	cin>>degree.phy; 
}
void Student::showdata()
{
	cout<<"=========分割线======="<<endl; 
	cout<<"Number:"<<number<<endl;
	cout<<"Name:"<<name<<endl;
	cout<<"Math"<<degree.math<<endl;
	cout<<"English:"<<degree.english<<endl;
	cout<<"Physics:"<<degree.phy<<endl; 
}
int main()
{
	Student s1;
	s1.getdata();
	s1.showdata();
	return 0;
}


结果输出:

Input number:007
Input name:qianshou
Input degree of math:89
Input degree of english:99
Input degree of physics:100
=========分割线=======
Number:007
Name:qianshou
Math89
English:99
Physics:100



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#编程(六)------------枚举发布时间:2022-07-13
下一篇:
C语言控制台贪吃蛇全部代码发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap