在C ++中从文本文件读取后如何求和值?

时间:2019-02-09 07:40:38

标签: c++ computer-science

我试图弄清楚如何对从随机数生成器生成的值求和。

下面的代码写入并读取随机数,然后输出所有随机数。

我根本无法弄清楚如何将随机数生成的值相加。

UINavigationBar.appearance().backgroundColor = UIColor(red: 159/255, green: 31/255, blue: 99/255, alpha: 100)
UINavigationBar.appearance().tintColor = UIColor.white
UINavigationBar.appearance().titleTextAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white] 

1 个答案:

答案 0 :(得分:2)

这是从文件中读取数字并将其加起来的方法

ifstream myfile ("Asg4.txt"); //opening the file.
int total = 0;
int number;
while (myfile >> number)
    total += number;
cout << "The total is " << total << "n";