1.26 输出华氏-摄氏温度转换表
作者:互联网
输出华氏-摄氏温度转换表
#include <stdio.h>
#include <math.h>
int main ()
{
int lower,upper;
int F;
double C;
scanf("%d %d",&lower,&upper);
if(lower>upper){
printf("Invalid.");
}else{
printf("fahr celsius\n");
for(lower;lower<=upper;lower=lower+2){
F=lower;
C=5*(F*1.0-32)/9;
printf("%d%6.1f\n",F,C);*******************占据6个字符宽度,靠右对齐,保留1位小数
}
}
return 0;
}
标签:upper,lower,华氏,int,摄氏温度,printf,include,1.26 来源: https://blog.csdn.net/weixin_52165318/article/details/113201855