我必须用 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
?
我是一名学生,所以请给我一个“学术”的方法来解决它:)