这个程序无论输入什么运行出的结果总是含有-107374176.00,这是什么情况
#include<stdio.h>int main()
{
float a,b;
scanf("%f,%f",&a,&b);
printf("%5.2f,%5.2f\n",a,b);
return 0;
}
运行后是这样的
9,7
9.00,-107374176.00
press any key to continue
2017-10-09 15:59
2017-10-09 16:06
2017-10-09 22:15
2017-10-09 22:31

2017-10-10 11:27