私は私のプログラムを持っています:
#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] に書いた都市を見つける必要があります。ファイル内の行の形式が間違っている場合は、その都市の平均気温を教えてくれます。
このコードをより効率的に「最適化」し、同じことをより「コンパクト」な方法で書くにはどうすればよいのでしょうか。私は学生なので、すべての提案が受け入れられます。