编一个程序,输入三个单精度数,输出其中最小数。
编一个程序,输入三个单精度数,输出其中最小数。
【正确答案】:main() {float a,b,c,t,min; printf("请输入A,B,C:"); scanf("%f,%f,%f",&a,&b,&c); t=(a
Top