#include <iostream>
using namespace std;
class test
{public:
test ();
~test(){};
private:
int i;
};
test::test()
{i=25;
for(int ctr=0;ctr<10;ctr++)
{cout<<"counting at"<<ctr<<"\n";}
}
test anobject;
int main()
{return 0;
}
问题是运算结果是什么,我感觉从main运行没有结果啊,求解答
- 3 回答
- 0 关注
- 1485 浏览
添加回答
举报
0/150
提交
取消