我正在尝试使用do-while
.
#include<stdio.h>
#include<conio.h>
void main()
{
char another;
int num;
do
{
printf("Enter a number");
scanf("%d",&num);
printf("Square of %d id %d",num,num*num);
printf("Want to another another number y/n");
scanf("%c",&another);
}while(another=='y');
}
现在,当我尝试执行该程序时,它运行良好。我输入一个数字,它显示它的正方形。然后我看到了Want to enter another number y/n
。但是,只要我按下任何键(y 或 n),程序就会自行退出,然后我才能按下 enter 来提供输入。我尝试了很多次,但没有成功。
但是如果我要求用户输入 1 或 2(代替 y/n),程序运行良好。在这种情况下,它需要一个整数输入并且可以检查 while 块。如果another == 1
,程序再次运行。
我的问题是为什么我不能检查while
条件中的字符。