标签:else scanf lang span double hustoj 小数 比较 http
从小到大输出这两个实数,中间以空格来分隔,小数在前,大数在后。
小数点后保留2位小数。
末尾输出换行符。
3.6 -2.3
-2.30 3.60
答案:
#include<stdio.h>
int main(){
double a,b;
scanf("%lf %lf",&a,&b);
if(a>b){
printf("%.2f %.2f",b,a);
}else{
printf("%.2f %.2f",a,b);
}
return 0;
}
标签:else scanf lang span double hustoj 小数 比较 http
原文地址:http://www.cnblogs.com/zhhjthing/p/7707859.html