为什么即使输入值999999,它总是会转到else语句?有人可以解释为什么以及这样做的正确方法是什么?
#include <stdio.h>
int main(int argc, char **args)
{
double dValue = 0;
scanf("%d",&dValue);
if(10000 < dValue){
printf("More than");
} else {
printf("Less than");
}
return 0;
}