Answer to Exercise 1-15, page 27
Solution by Richard Heathfield
Rewrite the temperature conversion program of Section 1.2 to use a function for conversion.
#include <stdio.h>
float FtoC(float f)
{
float c;
c = (5.0 / 9.0) * (f - 32.0);
return c;
}
int main(void)
{
float fahr, celsius;
int lower, upper, step;
lower = 0;
upper = 300;
step = 20;
printf("F C\n\n");
fahr = lower;
while(fahr <= upper)
{
celsius = FtoC(fahr);
printf("%3.0f %6.1f\n", fahr, celsius);
fahr = fahr + step;
}
return 0;
}
'The C Programming Language' 카테고리의 다른 글
Chapter 1 - A Tutorial Introduction 17 (0) | 2009.03.25 |
---|---|
Chapter 1 - A Tutorial Introduction 16 (0) | 2009.03.25 |
Chapter 1 - A Tutorial Introduction 14 (0) | 2009.03.25 |
Chapter 1 - A Tutorial Introduction 13 (0) | 2009.03.25 |
Chapter 1 - A Tutorial Introduction 12 (0) | 2009.03.25 |