自考新教材-p86_3(1)

源程序:

#include <iostream>
using namespace std;
class Test
{
private:
int x, y;
public:
Test(int i, int j)
{
x = i;
y = j;
}
int getx()
{
return x;
}
int gety()
{
return y;
}
};

int main()
{
Test mt(10,20);
cout << mt.getx();
cout << mt.gety() << endl;
system("pause");
return 1;
}

运行结果:

 

posted @ 2020-02-06 14:37  bobo哥  阅读(139)  评论(0编辑  收藏  举报