高等继续教育 / 面向对象程序设计
正确率:认证
题型描述: 纠错题
指出下面程序错误的地方:
#include <iostream.h>
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<<mt.getx()<<endl;
cout<<mt.gety()<<endl;
}
参考答案:
佳题速递: