a 是float类型,对应输出格式应该是%f
a已经使用了,不能重复使用
#includeint main (void) {int a=9,b=10;float c=12.3; printf("%d,%d,%f",a,b,c);return 0;}