标签:math.h ali span 公式 ase 格式 计算公式 保留 style
输入2个正整数lower
和upper
(lower
≤upper
≤100),请输出一张取值范围为[lower
,upper
]、且每次增加2华氏度的华氏-摄氏温度转换表。
温度转换的计算公式:C=5×(F?32)/9,其中:C表示摄氏温度,F表示华氏温度。
在一行中输入2个整数,分别表示lower
和upper
的值,中间用空格分开。
第一行输出:"fahr celsius"
接着每行输出一个华氏温度fahr(整型)与一个摄氏温度celsius(占据6个字符宽度,靠右对齐,保留1位小数)。
若输入的范围不合法,则输出"Invalid."。
32 35
fahr celsius
32 0.0
34 1.1
40 30
Invalid.
#include<stdio.h> #include<math.h> int main() { int lower,upper; double c; scanf("%d%d",&lower,&upper); if(lower>upper) { printf("Invalid.\n"); } else { printf("fahr celsius\n"); for(int f=lower;f<=upper;f+=2) { c=5*(f-32)/9; printf("%d%6.1f\n",f,c);//输出占六个字符%6.1lf } } return 0; }
标签:math.h ali span 公式 ase 格式 计算公式 保留 style
原文地址:https://www.cnblogs.com/2228212230qq/p/9277033.html