阅读格式不一致的文本文件

时间:2019-04-25 18:42:25

标签: c++

我正在尝试对包含重复的基于C的字符串和一些数字的文本文件执行某些操作。我的代码成功地对第一个集合执行了操作,但是无法到达其余集合。

请在下面查看文本文件的内容:

Max Scherzer             2017

6.2 4 2 2 2 7

6.0 4 3 1 2 10

mod Cameron              2018

6.4 4 1 2 1 3

6.0 4 3 5 2 8

John Brandonso           2019

6.1 1 3 5 2 7

6.5 4 7 3 4 10

我用过.eof(),它完全搞砸了我在做什么。

#include <iostream>
#include <fstream>
#include <iomanip>
#include <cmath>
using namespace std;

int main()
{
char playername [25];
int season;

ifstream gamefilein;

gamefilein.open("C:\\Users\\troy\\Desktop\\GAME_SCORE\\gameinfo.txt");
if(!gamefilein)
{
    cout<<"unable to open file";
}

double IP;
int H,R,ER,BB,K;
int counter=0;
double totalscore=0;
while(!gamefilein.fail())
{
gamefilein.get(playername,25);
gamefilein>>season;
cout<<playername<<season<<endl;
cout<<"Game Scores:"<<endl;

while(gamefilein>>IP>>H>>R>>ER>>BB>>K)
{
int IPa=IP;
int IPb=(IP-IPa)*10;
int IPc=0;
if(IPa>4)
{
    IPc=IPa-4;
}
int score=50+(IPa*3)+(IPb*1)+(IPc*2)+(K*1)-(H*2)-(ER*4)-((R-ER)*2)-(BB*1);
cout<<score<<endl;
counter++;
totalscore+=score;
}

cout<<"Number of Games Started: "<<counter<<endl;
cout<<fixed<<setprecision(2)<<"Average Game Score:  
<<(totalscore/counter)<<endl<<endl;
}
gamefilein.close();
return 0;
}    

我得到以下结果,但是对于文本文件中的其余信息,我希望得到相同的结果,例如,我希望有另外两个结果,如下面的结果。

Max Scherzer            2017


Game Scores:

63

64

Number of Games Started: 2

Average Game Score: 63.50

2 个答案:

答案 0 :(得分:0)

您不是以char数组形式读取文件吗?

如果我没看错的话,您尝试将一个int值移动并在一个字符串数组中加倍,而该字符串数组中的数字在STRING中对吗?

例如“ 6.2”字符串与您的内存中的6.2双精度数字不同,因此为什么它不能工作。

您似乎也有很多空格,也不应忘记。

您从哪里获得该字符串?我建议您将该文件的创建更改为更方便的格式,例如cv或json

答案 1 :(得分:0)

我刚刚解决了自己的问题。当循环在整数上运行并且double完成循环并看到下一个数据集中的基于字符的字符串时,就会出现问题。所以我只在我检查文件末尾的位置插入了一个清晰的成员函数     (gamefilein.clear()) 那解决了我的问题。

感谢您的帮助