您当前的位置: 首页 >  c++

第一个包含类的C++程序

刘一哥GIS 发布时间:2015-10-24 19:48:03 ,浏览量:4

#include
using namespace std;

class student
{
private:
	int num;
	int score;
public:
	void setdata()
	{
		cin>>num;
		cin>>score;
	}
	void displyadata()
	{
		cout            
关注
打赏
1688896170
查看更多评论
0.0532s