遇到点困难,求救
#include <iostream>using namespace std;
class ex
{
public:
int i;
ex(int j);
};
ex::ex(int j)
{
i=j;
}
int main()
{
ex d(3);
cout<<d.i;
d.i=10;
cout<<d.i;
return o;
}
就这个程序,咋出错了,我在做一道练习题,没答案,谢谢大家了!!!
[[it] 本帖最后由 whl20888 于 2008-10-4 22:14 编辑 [/it]]