0

我有一个程序应该能够读取的银行帐户文件。这个函数现在可以使用 ifstream 来工作。但我希望程序读取文本文件的第 6 行(其值为“balance”),然后根据需要对其进行更新(删除并替换为新值)。

我使用了一个 for 循环来查找遍历线。但是我如何在需要时更新它(取款和存款更新余额)

这是我现在的代码:

ifstream file;
string line;
file.open ("accounts.txt", ios::in); 

for(int i = 0; i < 6; ++i)    //6 being the 6th line
      {
         getline(file, line);
      }

伙计们接下来会发生什么?谢谢 :)

4

1 回答 1

2

如果您的文件像您提到的那样非常小,您可以将它放入一个字符串数组(每行文本一个元素)。然后对数组进行更改并将整个数组重新写入文件。

例如,您可以像这样将其读入 arrya:

//assuming you've defined the array A
for(int i = 0; i < 6; i++)    //NOTE: I've changed the loop counter i
      {
         getline(file, line);
         A[i] = line;
         cout << A[i] < "\n"; //This is the NEW LINE I wanted you to put
         //If the ABOVE line gives nothing, you ought to check your TXT file.
      }
//Change line 6
A[5] = "555.00";
//Now reopen the file to write
ofstream Account ("accounts.txt");
if (Account.is_open())
  {
    for(i=0;i<6;i++)
       {//NOTE THAT I HAVE INCLUDED BRACES HERE in case you're missing something.
        Account << A[i] << "\n"; //Loop through the array and write to file
       }
    Account.close();
  }

我没有对此进行测试,但我认为没关系。更多代码:如果您在主代码末尾添加以下代码,您应该会看到数组中的内容。如果这没有显示任何内容,则表明您的文件为空。

for(int i = 0; i < 6; i++)
   {
    cout << A[i] < " This is a row with data\n";
   }

注意:虽然我想在这个论坛上帮助你澄清问题,但我认为这个问题超出了这个论坛的性质。也许您需要花一些时间学习循环和其他结构的艺术:)

于 2013-05-25T11:40:45.300 回答