比较输入两个值得大小 这个程序输出错误 怎么回事
#include <stdio.h>int main()
{
float a,b,c=0.0;
scanf("%f,%f",&a,&b);
if(a<b)
printf("%.2f,%.2f",a,b);
else
{
c=a;
a=b;
b=c;
printf("%.2f,%.2f",a,b);
}
return 0;
}
#include <stdio.h> int main() { float a,b,c=0.0; scanf("%f %f",&a,&b); if(a<b) printf("%.2f %.2f",a,b); else { c=a; a=b; b=c; printf("%.2f,%.2f",a,b); } return 0; }