c-将结构中的char数组与用户输入的char数组进行比较



我正在编写一个代码,用于在文件中搜索特定的学生,并计算其平均值。除了一件事之外,其他的都是有效的。当我在一个char变量中输入学生的名字,在文件中搜索他时,编译器不会得到它。它等于文件结构中的一个char。。。

#include <stdio.h>
#include <stdlib.h>
#define nl printf("n")
#define N 100
struct student {
char id[N][N];
int vote[10][10];
};
int main()
{
struct student stud;
FILE *filer;
int i=0, j=0, k=0, n_stud=0;
char checker[1], who[N];
float avg[10], mark=0.0, count=0.0;
printf("Introduce student id: ");
scanf("%14s", &who);
printf("Searching for student %s...n", who);
nl;
filer=fopen("students.dat", "r");
if(filer==NULL) {
printf("Can't open file...n");
}
for(i=0; fscanf(filer, "%s", &stud.id[i])!=NULL && fscanf(filer, "%c", &checker)!=EOF; ++i) {
for(j=0; fscanf(filer, " %d", &stud.vote[i][j])!=-1; ++j ) {
if(stud.vote[i][j]!=-1) {
mark=mark+stud.vote[i][j];
count++;
} else {
for(k=j; k<10; k++) {
stud.vote[i][k]=0;
}
break;
}
}
n_stud++;
avg[i]=mark/count;
mark=0.0; count=0.0;
}
for(i=0; i<n_stud; ++i){
if (who == stud.id[i]) {  //HERE IS THE PROBLEM!!!
printf("Student %s's average is: %.2f", stud.id, avg[i]);
}
}
nl;
fclose(filer);
return EXIT_SUCCESS;

}

文件

s11111  30  28  18  -1
sa44er44    23  18  30  18  29  18  29  -1
s33333  30  30  -1
22222idx 18 -1

不能使用==-运算符比较C-"字符串"(实际上只是char-数组):

if(who==stud.id[i]){

改为使用strcmp()功能:

if (strcmp(who, stud.id[i]) == 0) {

不相关,但仍然很重要:您需要确保不会让用户溢出who

你可以这样告诉scanf()who的大小:

scanf("%14s", who); /* Tell it one less to have a spare char 
to store the '0'-terminator. */

虽然scanf(()通常需要一个地址作为参数,但您不会传递who的地址,而只传递who,因为数组(`who^)会衰减到其第一个元素的地址。,当传递给函数时。

相关内容

  • 没有找到相关文章

最新更新