#include <iostream>
using namespace std;
int main(){
string s;
getline(cin,s);
return 0;
}
以上是输入字符串时读到回车为止
while((c=getchar())!='\n') {
...
}
上面是输入char类型读到回车停止
#include <bits/stdc++.h>
using namespace std;
int b[10];
int main()
{
int i=0,a;
while(cin>>a){
b[i++]=a;
if(cin.get()=='\n') break;
}
for(i=0;i<10;i++) cout<<b[i]<<" ";
}
上面是int类型