我有我的程序:
#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)
{
while ((r = fscanf(fp, "%f %s\n", &temp, loc)) != 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));
}
fclose(fp)
return 0;
}
该程序需要阅读所有行并找到我在 argv[2] 上写的城市。它会告诉我那个城市的平均温度,如果文件中的一行格式错误,它会通知我。
我想知道如何“优化”此代码以提高效率并以更“紧凑”的方式编写相同的内容。我是学生,所以所有建议都被接受。