第六周作业(一)

#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();
 system("pause");
}

第六周作业(一)_第1张图片

你可能感兴趣的:(c,System,include,作业)