C++-输入多个数据回车结束且自动排除符号

发布于 2017-01-28 20:41:00 字数 919 浏览 1187 评论 1

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灵芸 2017-08-18 23:47:23

你的程序有点问题,可能概念有点不清晰。
需要知道的是,>>运算会过滤掉不可见字符(如 空格 回车,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++中关于接收用户输入的用法有不少,简单列举下供参考:

1、cin 2、cin.get() 3、cin.getline()
4、getline() 5、gets() 6、getchar()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文