一步一步学C++2_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > 一步一步学C++2

一步一步学C++2

 2012/4/23 12:43:29  BrotherGrup  程序员俱乐部  我要评论(0)
  • 摘要:声明:所有代码根据谭浩强老师的红皮书例子学习写的。包含类的C++程序#include<iostream>usingnamespacestd;classStudent{private:inta;intb;public:setname(){cin>>a;cin>>b;}showname(){cout<<"名字="<<a<<endl;cout<<"年龄="<<b<<endl;};}
  • 标签:c++
声明:所有代码根据谭浩强老师的红皮书例子学习写的。


包含类的C++程序
#include <iostream>
using namespace std;
class Student
{
private:
	int a;
	int b;
public:
	setname()
	{
		cin>>a;
		cin>>b;
	}
	showname()
	{
		cout<<"名字="<<a<<endl;
		cout<<"年龄="<<b<<endl;
	};
};

Student stu1,stu2;

int main()
{
	stu1.setname();
	stu2.setname();
	stu1.showname();
	stu2.showname();
	return 0;
}
发表评论
用户名: 匿名