我正在学习 C,我正在使用“getchar()”来停止命令窗口,这样我就可以看到正在做的练习,但它只是不起作用。这是一个样本:
#include <stdio.h>
int main()
{
int value;
printf("1. option 1.\n2. option 2.\n3. option 3.\n4. Exit\n\nMake an option: ");
scanf("%d", &value);
switch (value)
{
case 1:
printf("you selected the option 1.");
break;
case 2:
printf("you selected the option 2.");
break;
case 3:
printf("you selected the option 3.");
break;
case 4:
printf("goodbye");
break;
default:
printf("thats not an option");
break;
}
getchar();
return 0;
}
这是输出:
- 选项1。
- 选项 2。
- 选项 3。
- 出口。
做一个选项:1
您选择了选项 1。
进程返回 0 (0x0) 执行时间:3.453 s
按任意键继续。
为什么不等待“getchar()”的输入?