生徒の番号を入力してから名前とマークを入力する必要があります。しかし、私はマークを入力すると、プログラムがクラッシュします。なぜ私は最後のループ関数に入ると私のプログラムがクラッシュするのか分かりません。私はあまりにも多くネストしたので、おそらく?ループ関数が入力されたときにクラッシュする
#include <stdio.h>
#include <string.h>
#define NAME_LEN 25
int noOfStud(void);
void listStudents(int noOfStud, char names[][NAME_LEN]);
void options(int noOfStud, double marks[]);
void switchOptions(int noOfStud, double marks[]);
void courseWork1(int noOfStud, double marks[]);
void emptyBuffer(void);
int main(void)
{
int students;
char names[students][NAME_LEN];
double marks[students];
students = noOfStud();
listStudents(students, names);
options(students, marks);
return 0;
}
int noOfStud(void)
{
int students;
printf("Number of students: ");
scanf("%d", &students);
getchar();
return students;
}
void listStudents(int noOfStud, char names[][NAME_LEN])
{
int i;
for(i=0; i<noOfStud; i++)
{
printf("Enter name: ");
scanf("%[^\n]", names[i]);
getchar();
}
}
void options(int noOfStud, double marks[])
{
printf("1. Enter marks for course work 1\n");
printf("2. Enter marks for course work 2\n");
printf("3. Enter makrs for course work 3\n");
printf("4. Display a particular student's marks\n");
printf("5. Supervisor mode\n");
printf("6. Exi program\n");
switchOptions(noOfStud, marks);
}
void switchOptions(int noOfStud, double marks[])
{
char options;
printf("\nPlease enter a number for which choice you want: ");
scanf("%d", &options);
emptyBuffer();
switch(options)
{
case 1:
printf("Thank you for chosing to enter marks for course work 1!\n");
courseWork1(noOfStud,marks);
break;
case 2:
printf("Thank you for chosing to enter marks for course work 2!\n");
break;
case 3:
printf("Thank you for chosing to enter marks for course work 3!\n");
break;
case 4:
printf("work 4");
break;
case 5:
printf("work 5");
break;
case 6:
printf("work 6");
break;
default:
printf("You didn't enter anything");
}
}
void courseWork1(int noOfStud, double marks[])
{
int i;
for(i=0; i<noOfStud; i++)
{
printf("Enter marks: ");
scanf("%d", &marks[i]);
getchar();
}
}
void emptyBuffer(void) /* Empty the keyboard buffer */
{
while(getchar() != '\n')
{
;
}
}
最後のループ機能を入力するまでは問題なく動作しますが、クラッシュします。あなたはどんなアイデアを持っていますか?私を助けてくれてありがとう。
void courseWork1(int noOfStud, double marks[])
{
int i;
for(i=0; i<noOfStud; i++)
{
printf("Enter marks: ");
scanf("%d", &marks[i]);
getchar();
}
}
http://idownvotedbecau.se/nomcve/ – klutt
'チャート名[students] [NAME_LEN];は' students = noOfStud(); 'の後にする必要があります。 – mch
'scanf("%d "、&options);' - > 'options'は' char'型です。これは 'scanf("%c "、&options);' –