1.3 The for Statement 0 -17.8 20 -6.7 40 4.4 60 15.6 80 26.7 100 37.8 120 48.9 140 60.0 160 71.1 180 82.2 200 93.3 220 104.4 240 115.6 260 126.7 280 137.8 300 148.9 #include main() { int fahr; for( fahr = 0; fahr 프로그래밍/C언어 2011.11.07
1.2 Variables and Arithmetic Expressions 0 -17 20 -6 40 4 60 15 80 26 100 37 120 48 140 60 160 71 180 82 200 93 220 104 240 115 260 126 280 137 300 148 결과 값은 이렇답니다. source code#include main() { int fahr, celsius; int lower, upper, step; lower = 0; /* lower limit of temperature table*/ upper = 300; /* upper limit */ step = 20; /* step size */ fahr = lower; while(fahr 프로그래밍/C언어 2011.11.07