Fscanf还是Fgets?一行一行地读取文件

时间:2012-06-23 09:50:13

标签: c fgets scanf

我必须在C中编写一个程序来读取包含几行文本的文件,每行包含两个变量:一个数字(%f)和一个字符串:

EX: file.txt
============
24.0 Torino
26.0 Milano
27.2 Milano
26.0 Torino
28.0 Torino
29.4 Milano

有我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main (int argc, char *argv[])
{
    int r, line = 0, found = 0;
    float temp, t_tot = 0;
    char loc[32];


    FILE *fp;

    fp = fopen(argv[1], "r");

    if (fp == NULL)
    {
        printf ("Error opening the file\n\n'");
        exit(EXIT_FAILURE);
    }

    if (argc == 3)
    {
        r = fscanf(fp, "%f %s\n", &temp, loc);

        while (r != EOF)
        {
            line++;

            if (r == 2)
            {
                if(strcmp(argv[2], loc) == 0)
                {
                    t_tot += temp;
                    found++;
                }
            }
            else
                printf ("Error, line %d in wrong format!\n\n", line);
        }

        printf ("The average temperature in %s is: %.1f\n\n", argv[2], (t_tot/found);
    }

}

程序需要读取所有行并找到我在argv[2]上写的城市。比它会告诉我那个城市的平均温度,通知我文件中的一行是否格式错误。

该程序正在编译给我,但它不会在屏幕上输出任何内容......我该如何解决?在这种情况下使用fscanf是正确的还是更好fgets

我是一名学生,请给我一个&#34; academical&#34;解决问题的方法:)

4 个答案:

答案 0 :(得分:11)

有几件事。

首先,你必须使用fclose() 其次,您的代码需要fscan()文件中的每一行。不仅在while()循环之前,而且在每个while循环中你都需要fscan()进行下一次迭代 第三,你没有计算平均温度,你正在计算所有发现的tempuratures的总和。通过在最后一个printf()中将“t_tot”更改为“(t_tot / found)”来解决此问题。

最后,我不确定你为什么没有得到任何输出。你的输入就像“myprogram file.txt Milano”对吗?适合我。无论如何,这是你的(编辑过的)代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main (int argc, char *argv[])
{
    int r, line = 0, found = 0;
    float temp, t_tot = 0;
    char loc[32];

    FILE *fp;
    fp = fopen(argv[1], "r");

    if (fp == NULL)
    {
        printf ("Error opening the file\n\n'");
        exit(EXIT_FAILURE);
    } else {

        if (argc == 3)
        {
            r = fscanf(fp, "%f %s\n", &temp, loc);
            while (r != EOF)
            {
                line++;
                if (r == 2)
                {
                    if(strcmp(argv[2], loc) == 0)
                    {
                        t_tot += temp;
                        found++;
                    }
                }
                else
                    printf ("Error, line %d in wrong format!\n\n", line);
                r = fscanf(fp, "%f %s\n", &temp, loc);
            }
            printf ("The average temperature in %s is: %.1f\n\n", argv[2], (t_tot / found));
        }

    fclose(fp);

    }
}

答案 1 :(得分:3)

你必须把fscanf行放在while循环中

    while (1)
    {
        r = fscanf(fp, "%f %s\n", &temp, loc);
        if( r == EOF ) 
           break;
        .........................
    }

最后关闭文件

如果您使用fgets更改如下

  char s[256];
  while( fgets( s, 256, fp) != NULL )
  {
     sscanf( s, "%f %s", &temp, loc);
     .............
  }

答案 2 :(得分:2)

你的代码不会像它应该的那样在循环中调用fscanf:读取完成一次,然后如果文件为空,则程序立即存在,或者无限循环。

您应该在fscanf循环中移动while的调用。编码的一种典型方法是将赋值放在循环头中,如下所示:

while ((r = fscanf(fp, "%f %s\n", &temp, loc)) != EOF) {
    ...
}

答案 3 :(得分:1)

像这样修改代码......只需在while语句中添加另一个fscanf。

if (argc == 3)
{
 r = fscanf(fp, "%f %s\n", &temp, loc);
  while(r != EOF )

    {
        r = fscanf(fp, "%f %s\n", &temp, loc);  
        line++;

        if (r == 2)
        {
            if(strcmp(argv[2], loc) == 0)
            {
                t_tot += temp;
                found++;
            }
        }
        else
            printf ("Error, line %d in wrong format!\n\n", line);
    }

    printf ("The average temperature in %s is: %.1f\n\n", argv[2], t_tot);
}

}