int main() {
FILE *fp = fopen("fileA.txt", "r"); /* read file */
int i = 0;
char name[200][100];
char goods[200][100];
char qty[200][100];
char temp[200][100];
int x = 0;
int result;
while (!feof(fp)) {
fscanf(fp, "%[^,] , %[^,] , %s " , name[i], item[i], qty[i]); /*get file content and store in array */
if (strcmp(item[i], "Football") == 0) { /* only select Football */
temp[x][x] = qty[i];
if (x > 0) {
if (strcmp(temp[x][x], temp[x + 1][x + 1]) > 0) { /*compare who has more football qty */
result = x; /*output the person who have more football*/
}
}
x = x + 1;
}
}
printf("%s is team leader in class.\n", name[result]);
fclose(fp);
getchar();
return 0;
}
大家好,我不知道为什么结果不正确。
我想知道谁有更多的足球并打印出他/她的名字。
if (strcmp(temp[x], temp[x + 1]) > 0)
似乎有问题
我并没有明确地使用指针和地址。
文本文件中的内容为:
Alice,Eating,001
Kitty,Football,006
Ben,Swimming,003
May,Football,004
我希望结果是:
Kitty is team leader in class.
谢谢。
答案 0 :(得分:1)
您的代码中存在多个问题:
您不测试文件是否正确打开。
您无法使用while (!feof(fp)) {
正确解析文件。只要fscanf()
返回3,就应该迭代,或者最好逐行读取输入并用sscanf()
解析。
您没有告诉fscanf()
要存储到目标阵列中的最大字符数。这可能会导致无效输入的未定义行为。
您不会为每行读取增加i
。每行输入都会覆盖前一行。
您不检查是否有超过200行。在这种情况下未定义的行为。
您的测试找到了数量最多的球迷:这里不需要2D阵列,只需跟踪当前最大值并在需要时更新。
以下是修改后的版本:
#include <stdio.h>
int main() {
FILE *fp = fopen("fileA.txt", "r"); /* read file */
char buf[300];
char name[200][100];
char goods[200][100];
char qty[200][100];
int i, qty, max_qty = 0, result = -1;
if (fp == NULL) {
fprintf(stderr, "cannot open file\n");
return 1;
}
for (i = 0; i < 200; i++) {
if (!fgets(buf, sizeof buf, fp))
break;
if (sscanf(buf, " %99[^,], %99[^,],%99s", name[i], item[i], qty[i]) != 3) {
fprintf(stderr, "invalid input: %s\n", buf);
break;
}
if (strcmp(item[i], "Football") == 0) { /* only select Football */
qty = atoi(qty[i]);
if (result == -1 || qty > max_qty) {
result = i; /*store the index of the person who have more football */
}
}
}
if (result < 0)
printf("no Football fan at all!\n");
else
printf("%s is team leader in class with %d in Football.\n", name[result], max_qty);
fclose(fp);
getchar();
return 0;
}
答案 1 :(得分:0)
上面的代码不清楚你想在这个代码块中做什么
if ( strcmp(temp [x], temp [x+1]) > 0 ){ /* when matches, accessing temp[x+1] results in undefined behaviour */
result = x;
}
为什么char *temp[200][100];
存储qty[i]
,char *temp
就足够了,或者您可以char temp[200][100];
由于要求不明确,因此效果稍好一些。
int main() {
FILE *fp= fopen("fileA.txt","r"); /* read file */
if(fp == NULL) {
/* not exist.. write something ?? */
return 0;
}
char name [200][100],goods[200][100],qty[200][100],temp[200][100];
int x = 0,result = 0, i = 0;
while ((fscanf(fp, "%[^,] , %[^,] , %s " , name[i], goods [i], qty[i])) == 3) {
if (strcmp(goods[i] , "Football") == 0){
strcpy(temp[x],qty[i]);
if ( strcmp(temp [x], temp [x+1]) > 0 ) { /* UB ? */
result = x;
x+=1;
}
}
}
printf("%s is team leader in class. \n", name[result]);
fclose(fp);
getchar();
return 0;
}