因此,每当我尝试运行此代码时,它将通过第一个 printf 但它显示第二个而不让我输入值。有什么我做错了吗?
#include <stdio.h>
int main(int argc, const char * argv[])
{
int suit1;
int suit2;
char H, S, C, D;
float value1;
float value2;
printf("Please enter the card's suit");
scanf("%d", &suit1);
printf("Please enter the card's value");
scanf("%f", &value1);
printf("%d %f", suit1, value1);
}