C++入门基础篇学习手记: 读取数量不定的输入数据

问题:编写C++程序,要求计算用户输入数据的总和,并打印显示。


问题分析: 用户输入数据时,由于我们事先不知道要对多少个数据进行求和计算,因此我们需要不断地读取数据直至没有新的输入为止。


程序实现的源码如下:

#include "iostream"
using namespace std;
int main()
{
	double sum = 0, inValue = 0;

	cout << "Input values you want to sum, and press Ctrl+z to end your Input!" << endl;
	cout << "Your Input are: " << endl;

	while (cin >> inValue)
		sum += inValue;

	cout << "The sum of your inpu

你可能感兴趣的:(西加加,C++,数据求和)