C ++从文本文件中读取,解析和添加价格

时间:2013-11-13 10:30:47

标签: c++ file parsing

目标是从文本文件中读取程序,用#符号解析,然后打印出项目和价格。它处于循环中,因此需要重复,因为有3个项目。它还需要计算项目数量(基于行)并将所有价格加在一起以获得总价。需要解析的文本文件如下所示:

hammer#9.95
saw#20.15
shovel#35.40

我的代码如下:

#include <string> 
#include <fstream>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
ifstream invoice("invoice2.txt");
string name;
int count = 0;
int totalPrice = 0;
float price = 0.0;
while(invoice.open())
{
    getline(file, line);
    ++count;
    for (string line; getline(file, line); )
    {
        size_t sharp = line.find('#');  
        if (sharp != string::npos)
        {

                string name(line, 0, sharp);
                line.erase(0, sharp+1);
                price = stof(line);
            cout << "*** Invoice ***\n";
            cout << "----------------------------\n";
                cout << name << "               $" << price << "\n\n";
            cout << "----------------------------\n";
            cout << count << " items:             " << totalPrice;
            }
    }
}
return 0;
}

循环需要重复,直到文本文件结束,然后它应该中断并打印totalprice

2 个答案:

答案 0 :(得分:1)

首先,为什么while循环?你不需要那个。

其次,通过在内循环之前使用初始getline来跳过第一行。

第三,你永远不会向totalPrice添加任何内容。并且每次都在内循环中打印。 循环之后不应该打印吗?

因此改为类似下面的伪代码:

if (invoice.isopen())
{
    print_header();

    while (getline())
    {
        parse_line();
        print_current_item();
        totalPrice += itemPrice;
    }

    print_footer_with_total(totalPrice);

    invoice.close();
}

答案 1 :(得分:0)

为什么不使用getline的delimiter参数?

for (string str; getline(file, str, '#'); ) {
  double price;
  file >> price >> ws;
  totalPrice += price;
  // handle input...
}
// print total etc.