新微赢技术网

标题: 大家遇到过这个情况吗? [打印本页]

作者: 烟灰缸2    时间: 2009-11-3 01:41
标题: 大家遇到过这个情况吗?
#include <iostream>#include <vector>
using namespace std;
int main()
{
vector<int> vec1;
vector<int> vec2;
int value1,value2;
while(cin>>value1)
vec1.push_back(value1);
cout<<"next"<<endl;
while(cin>>value2)
vec2.push_back(value2);
return 0;
}
这个现在程序编译正常,在运行时,只可以让vec1读入数据,但是vec2不能读入;
这是为什么啊?




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2