我在执行以下代码时遇到了困难。完成一次执行后,变量“t”取空值。通过使用 getch() 而不是 scanf() 解决了这个问题。但我不知道为什么会这样。有什么解释吗?这是不起作用的程序。
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
char t;
void main()
{
while(1)
{
scanf("%c",&t);
printf("\nValue of t = %c",t);
printf("\nContinue (Y/N):");
char a=getche();
if(a=='n' || a=='N')
exit(0);
}
}
现在,这是正确执行的程序。
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
char t;
void main()
{
while(1)
{
t=getch();
printf("\nValue of t = %c",t);
printf("\nContinue (Y/N):");
char a=getche();
if(a=='n' || a=='N')
exit(0);
}
}