0

我目前正在编写代码,但我的代码一直存在问题。我将在下面添加它,但由于某种原因,每当我要求输入时,它都会跳过第二个扫描仪并直接进入第三个扫描仪。有谁知道问题可能是什么?

#include <stdio.h>
int main()
{
    char a,b,c,d;
    printf("Please input the price of your shopping items:");
    printf("\n");
    printf("Item 1:");
    scanf("%c", &a);
    printf("Item 2:");
    scanf("%c", &b);
    printf("\n");
    printf("Item 3:");
    scanf(" %c", &c);
    return 0;
}
4

0 回答 0