📄 readnums.cpp
字号:
#include <iostream>#include <sstream>#include <string>using namespace std;// illustrates use of input string streamsint main(){ string s; cout << "program computes averages of lines of numbers." << endl; cout << "to exit, use end-of-file" << endl << endl; while (getline(cin,s)) { int total = 0; int count = 0; int num;
istringstream input(s); while (input >> num) { count++; total += num; } if (count != 0) { cout << "average of " << count << " numbers = " << double(total)/count << endl; } else { cout << "data not parsed as integers" << endl; } } return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -