#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;
}
問題是運算結(jié)果是什么,我感覺從main運行沒有結(jié)果啊,求解答
- 3 回答
- 0 關(guān)注
- 1535 瀏覽
添加回答
舉報
0/150
提交
取消