标签:
#include<stdio.h>
main()
{
float a,b;
printf("输入俩个任意实数\n");
scanf("%f%f",&a,&b);
if(a>b)
printf("%f\n",a);
else
printf("%f\n",b);
return 0;
}
C语言初学 if-else语句判断俩数的最大值
原文地址:http://www.cnblogs.com/lj-1568/p/4376540.html