gpt4 book ai didi

C 项目 scanf()

转载 作者:太空宇宙 更新时间:2023-11-04 04:50:55 25 4
gpt4 key购买 nike

这是我的代码,我的陈述是当 while 循环开始运行时显示选项并在第一次迭代中扫描选择但在第二次迭代中不会再次分配选择并且会记住之前的选择。问题是什么 ? (我使用的是 VS2012)

while (!done){
int choice;

printf("\n------- STUDENT INFORMATION SYSTEM MAIN MENU --------\n");
printf("1-Load students from the database\n");
printf("2-Print existing students on the screen\n");
printf("3-Add a new student\n");
printf("4-Delete an existing student\n");
printf("5-Find an existing student\n");
printf("6-Quit\n");
printf("====> Choice? ");
scanf("%d", &choice);

switch(choice){
case 1:
LoadStudentsFromDatabase();
printf("Students loaded from database successfully\n");
break;

case 2:
PrintExistingStudentsOnTheScreen();
break;

case 3:
printf("\nFirstName: "); scanf("%s", s.firstName);

printf("LastName: "); scanf("%s", s.lastName);
printf("ID: "); scanf("%d", &s.id);
printf("Gpa: "); scanf("%f", &s.gpa);
printf("Department: "); scanf("%d", &s.department);

AddStudent(&s);
printf("1 student added\n");
break;

case 4:
printf("\nID? "); scanf("%d", &id);
if (DeleteStudent(id)){
printf("Student deleted successfully\n");
} else {
printf("Failed to delete the student. Does not exist?\n");
} /* end-else */
break;

case 5:
printf("\nID? "); scanf("%d", &id);
ps = FindStudent(id);
if (ps == NULL){
printf("Student not found\n");
} else {
char *depts[] = {"CS", "EE", "IE", "CE", "ME"};
printf("+--------------------+--------------------+------+------+------+\n");
printf("| FirstName | LastName | ID | GPA | Dept |\n");
printf("+--------------------+--------------------+------+------+------+\n");
printf("|%20s|%20s|%6d|%6.2f|%6s|\n", ps->firstName, ps->lastName, ps->id, ps->gpa, depts[ps->department]);
printf("+--------------------+--------------------+------+------+------+\n");
} //end-else
break;

case 6:
done = 1;
break;

default:
printf("!!!!!!!!!! Invalid choice. Try again :-))\n");
break;
} /* end-switch */
} /* end-while */

最佳答案

可能发生的情况是,当您第二次调用 scanf 时出现错误。可能是因为非数字输入正在等待在标准输入上读取。也许您上次没有完全阅读代码主体中的所有输入?由于您的转换格式 %d 原因,scanf 尝试读取一个数字并且只读取一个数字,因此如果要读取的下一个内容不是数字,它将失败并返回错误并留下 choice不变。您不检查此错误,因此假设 choice 包含一个新输入的值,而实际上它只包含它在调用 scanf 之前包含的任何内容。 scanf 也可能因为更多错误而失败,比如原因,但我怀疑这里不是这种情况。

我的建议是:

a) 检查 scanf 的返回值。在你的情况下它应该返回 1 。如果没有出现错误。您可以退出或再次显示菜单。

b) 查看 fpurge/fflush。我不确定使用 VC++ 可以为您提供什么,但 Google 会为您找到等价物。这些函数可用于在调用 scanf 之前丢弃挂起的输入。

HTH

关于C 项目 scanf(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15447810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com