어떤 부분이 잘 못된 것인지 계속 실패를 해도 알 수가 없습니다.

jsjwith1 Reply 6 years 4 weeks ago
float main() { float fahr, celsius; float lower, upper, step; lower = 0; /* lower limit of temperature table */ upper = 300; /* upper limit*/ step = 20; /* step size*/ fahr = lower; while (fahr <= upper) { celsius = 5 * (fahr - 32) / 9; printf("%.0f\t%.2f\n", fahr, celsius); fahr = fahr + step; } return 0;
onacloud Reply 6 years 3 weeks ago
축하해요