float a=1.5;
int b=1;
a=b;
printf("%d %d",a,b);为什么输出来结果是0 0阿
为什么不是1 1?