高等继续教育 / 面向对象程序设计
正确率:认证
题型描述: 纠错题
指出下面程序错误的地方,并修改:
#include <iostream.h>
class Test {
int x,y;
public:
fun(int i,int j) {x=i;y=j;}
show()
{cout<<"x="<<x;
if(y)
cout<<",y="<<y<<endl;
cout<<endl;}
};
void main()
{Test a;
a.fun(1);
a.show();
a.fun(2,4);
a.show(); }
参考答案: