gpt4 book ai didi

c++ - 使用用户创建的输出文件中的两个变量计算总和

转载 作者:太空狗 更新时间:2023-10-29 23:12:35 25 4
gpt4 key购买 nike

我正在尝试弄清楚我将如何使用我创建的输出文本文件来计算两个变量的总和。我的输出文本文件正确保存了信息,但我的总和为 0 和 0,因此它没有读取我认为的信息。另外,我输入数组的信息是否只保存到文本文件中?我只需要将它保存到文本文件中,这样总和计算就只从文本文件中接收信息

#include <iostream>
#include <string>
#include<iomanip>
#include <fstream>


using namespace std;

int main() {
int ItemNumber[2];
float price[2];
int sumnumber = 0;
float sumprice = 0;
string myfile = "c:/Users/rz/Desktop/numbers.txt";

int count = 0;


ofstream outFile;
outFile.open(myfile);
while (count <= 1)
{
cout << "enter a price" << endl;
cin >> price[count];
outFile << price[count] << endl;
cout << "enter a item number" << endl;
cin >> ItemNumber[count];
outFile << ItemNumber[count] << endl;

count++;
}

outFile.close();


fstream inFile;
inFile.open(myfile);
while (count <= 1)
{

sumprice = sumprice + price[count];

sumnumber = sumnumber + ItemNumber[count];
}
cout << sumnumber << endl;
cout << sumprice << endl;
system("pause");
return 0;
}

最佳答案

在第一个循环结束时:

int count = 0;
while (count <= 1) { ... count++ ... }

变量 count 将被设置为 2

然后,当你开始第二个循环时:

while (count <= 1) ...

条件已经为假,因此永远不会执行循环体。

为了让它工作,您必须将计数重置为零,以便它再次运行项目。或者,更好的是,单独保留 count(因为它表示处理了多少项目)并使用另一个变量来处理它们:

for (int i = 0; i < count; ++i) { ... use i rather than count ... }

关于c++ - 使用用户创建的输出文件中的两个变量计算总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45339875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com