연습 1-4 프로그램 인쇄 섭씨 온도를 화씨 온도로 변환하는 변환표 작성
1250 단어 《C 프로그래밍 언어 R&H》
/*
:2017/8/1
: 629
: 。 ℉ = (9/5)*℃ +32
: , , 。
*/
#include
int main(void)
{
float celsius, fahr; // ℃、℉
int lower, upper, step; // 、 、
lower = -50; // -50℃
upper = 70; // 70℃
step = 6; // 6℃
celsius = lower;
printf("℃\t℉
"); //
while(celsius <= upper)
{
fahr = (9.0/5.0) * celsius + 32.0;
printf("%3.0f\t%6.1f
", celsius, fahr);
celsius = celsius + step;
}
return 0;
}
/*
Vc++6.0 :
----------------------------
℃ ℉
-50 -58.0
-44 -47.2
-38 -36.4
-32 -25.6
-26 -14.8
-20 -4.0
-14 6.8
-8 17.6
-2 28.4
4 39.2
10 50.0
16 60.8
22 71.6
28 82.4
34 93.2
40 104.0
46 114.8
52 125.6
58 136.4
64 147.2
70 158.0
Press any key to continue
----------------------------
:
*/