私は一晩中デバッグしていました。コンソールが常に 2 番目のランナーの名前を尋ねるためにジャンプするのは非常に紛らわしいですが、最初のランナーの名前を入力するための変更はありません。
ここに私のmain.cのセグメントがあります
Trunner runners[10];
Trunner best;
int n,i;
const char* name = "give the name for runner ";
const char* time = "give the time for runner ";
printf("How many names you have?");
scanf("%d",&n);
for(i=0;i<n;i++){
readTime(&runners[i],time);
}
for(i=0;i<n;i++){
readName(&runners[i],name);
}
ここに私のrunner.cがあります
void readName(Trunner *runner, const char *prompt){
printf(prompt);
fgets (runner->name,30,stdin);
//getchar();
}
そして、私が得たものは、ランナーの名前がコンマと同じ行にある必要があり、ご覧のとおり、最初のランナーの名前は空です。
How many names you have?3
give the time for runner 11:13
give the time for runner 14:14
give the time for runner 12:13
give the name for runner give the name for runner lily
give the name for runner lucy
the winner is:
, 11:13
, 11:13 0:0
lily
, 14:14 3:1
lucy
, 12:13 1:0
Press any key to continue . . .