第六周 任务一 方法2

#include <iostream>
using namespace std;
class C
{
private:
	int x;
public:
	C(int x){this->x = x;}
	int getx()const{return x;}
};
void main()
{
	const C c(5);
	cout<<c.getx()<<endl;
	system("pause");
}

第六周 任务一 方法2_第1张图片

你可能感兴趣的:(c,include,任务)