在此输入图像说明当我运行程序时,首先要求"写字母A"然后要求写'字母B并写字母C"同时为什么?
#include <stdio.h>
int main()
{
char a, b, c;
printf("write letter A: ");
scanf("%c",&a);
printf("write letter B: ");
scanf("%c",&b);
printf("write letter C: ");
scanf("%c",&c);
return 0;
}