C++-输入多个数据回车结束且自动排除符号
#include <iostream>
#include <vector>
usingnamespacestd;
int main(){
vector<int> v;
cout<<"Enter a list of positive numbers.n"
<<"Place a Return at the end.n";
int next_num;
char next_char;
cin>>next_char;
while (next_char!='n') {
while (!(isdigit(next_char)||next_char=='-')) {
cin>>next_char;
}
cin.putback(next_char);
cin>>next_num;
v.push_back(next_num);
cout<<next_num<<" added. "
<<"v.size()="<<v.size()<<endl;
cin>>next_char;
}
cout<<"You entered:n";
for (unsignedint i=0; i<v.size(); i++) {
cout<<v[i]<<" ";
}
cout<<endl;
return0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的程序有点问题,可能概念有点不清晰。
需要知道的是,>>运算会过滤掉不可见字符(如 空格 回车,TAB 等),因此next_char在执行时没有被赋予"n"的可能性。
举例来看:
#include <iostream>
using namespace std;
main ()
{
int a,b;
cin>>a>>b;
cout<<a+b<<endl;
}
输入:2[回车]3[回车]
输出:5
你问题中的情况,是想得到一个char字符,可以使用cin.get(字符变量名)来做,
举个简单的例子:
#include <iostream>
using namespace std;
main ()
{
char ch;
ch=cin.get(); //或者cin.get(ch);
cout<<ch<<endl;
}
输入:jljkljkl
输出:j
每次接收到一个字符。
最后,C++中关于接收用户输入的用法有不少,简单列举下供参考: