高等继续教育 / 面向对象程序设计
题型描述: 纠错题
指出下面程序错误的地方:
#include
class Test {
private:
int x,y=20;
public:
Test(int i,int j){x=i,y=j;}
int getx(){return x;}
int gety(){return y;}
};
void main()
{
Test mt(10,20);
cout< cout< }
指出下面程序错误的地方:
#include
class Test {
private:
int x,y=20;
public:
Test(int i,int j){x=i,y=j;}
int getx(){return x;}
int gety(){return y;}
};
void main()
{
Test mt(10,20);
cout<
参考答案:
佳题速递: