我正在使用 GCC 编译器。在我的程序中,我使用了 3scanf
秒,但在执行时只执行了 2scanf
秒。为什么跳过 1 scanf
?它只执行 else 条件。
#include <stdio.h>
int main()
{
int h, c, t;
printf("tensile");
scanf("%d", &h);
printf("tensile1");
scanf("%d", &c);
printf("tensile2");
scanf("%d", &t);
if( h > 50 && c > 0.7 && t > 5600)
printf("HI");
else
printf("bye");
return 0;
}