摘要: #include<iostream.h>#include<string.h>#include<vector>#include<bitset>using namespace std;int main(){ vector<int> tt; int a; cout<<"Please input some numbers( q to quit): "<<endl; while((cin>>a)&&a!='q') { tt.push_back(a); cin 阅读全文
posted @ 2011-11-08 10:44 shiney 阅读(195) 评论(0) 推荐(0) 编辑