由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - C++如何输入的一个小问题
相关主题
输入输出流,stl,api精通各需要多长时间?读取数据求教
关于文件读取的C++ 问题?Re: 一道count frequency of all words的面试题 (转载)
C++ string to int Problemcin 进入 bad state后咋恢复呢? clear()没用
C++ Q13: Inputhow to use cin as default ifstream?
请教 一个关于loop的问题贡献一c++面试题
请教一个C++的问题求助,这样从c++输入窗口读入一连串的单词或数字呢?
C++ string类输入数据的问题C++ read matrix from txt file
C++ 屏幕输入问题问个C/C++题目
相关话题的讨论汇总
话题: numbers话题: 输入话题: cout话题: converter话题: num
进入Programming版参与讨论
1 (共1页)
x****t
发帖数: 389
1
比如
先cout<<"Please input some numbers: ";
然后在屏幕上输入一些数字 1 100 38 77
然后用什么方法可以自动计算出我输入了4个数字?
谢谢指教!!
x***y
发帖数: 633
2
Usually, if you don't know how many numbers will be input, there should be a
sentinel after the last number....Not sure wether some function in iostream
can do this...
W*****k
发帖数: 158
3
用stringsteam
#include
#include
#include
using namespace std;
int main(){
string result;
cout << "input some numbers\n";
getline(cin, result);
stringstream converter;
converter << result;
int num;
vector numbers;
while(!converter.fail()){
converter >> num;
numbers.push_back(num);
}
cout << "you entered " << numbers.size() << "numbers" << endl;
}
}

【在 x****t 的大作中提到】
: 比如
: 先cout<<"Please input some numbers: ";
: 然后在屏幕上输入一些数字 1 100 38 77
: 然后用什么方法可以自动计算出我输入了4个数字?
: 谢谢指教!!

x****t
发帖数: 389
4
多谢多谢!

【在 W*****k 的大作中提到】
: 用stringsteam
: #include
: #include
: #include
: using namespace std;
: int main(){
: string result;
: cout << "input some numbers\n";
: getline(cin, result);
: stringstream converter;

a********e
发帖数: 78
5
好答案, 正好用得上.
不过应该加上 #include, 不然好象编译通不过。
t****t
发帖数: 6806
6
我以前还没注意这个贴, 你一说我才注意到他的循环是典型的错误.
居然还有说"好答案"的...

【在 a********e 的大作中提到】
: 好答案, 正好用得上.
: 不过应该加上 #include, 不然好象编译通不过。

z****e
发帖数: 2024
7
大侠给讲讲。
多谢。

【在 t****t 的大作中提到】
: 我以前还没注意这个贴, 你一说我才注意到他的循环是典型的错误.
: 居然还有说"好答案"的...

t****t
发帖数: 6806
8
自己试试就知道为啥是错的了

【在 z****e 的大作中提到】
: 大侠给讲讲。
: 多谢。

1 (共1页)
进入Programming版参与讨论
相关主题
问个C/C++题目请教 一个关于loop的问题
New C++ programmer, need to ask a I/O file read question请教一个C++的问题
请教一个C++关于输入输出的问题C++ string类输入数据的问题
help on string parseC++ 屏幕输入问题
输入输出流,stl,api精通各需要多长时间?读取数据求教
关于文件读取的C++ 问题?Re: 一道count frequency of all words的面试题 (转载)
C++ string to int Problemcin 进入 bad state后咋恢复呢? clear()没用
C++ Q13: Inputhow to use cin as default ifstream?
相关话题的讨论汇总
话题: numbers话题: 输入话题: cout话题: converter话题: num