第六周 任务一 方法1

#include <iostream>
using namespace std;

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


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

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