home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.barnyard.co.uk
/
2015.02.ftp.barnyard.co.uk.tar
/
ftp.barnyard.co.uk
/
cpm
/
walnut-creek-CDROM
/
MBUG
/
MBUG150.ARC
/
C-STUFF1.LBR
/
TEMP1.C
< prev
next >
Wrap
Text File
|
1979-12-31
|
640b
|
25 lines
/* print Fahrenheit-Celsius table
for f = 0, 20, ..., 300 */
main()
{
int lower, upper, step;
float fahr, celsius;
lower = 0; /* lower limit of temperature table */
upper = 300; /* upper limit */
step = 20; /* step size */
fahr = lower; /* fahr start */
printf("\nFahrenheit - Celsius\n"); /* header */
printf("--------------------\n");
while (fahr <= upper)
{
celsius = (5.0/9.0) * (fahr-32.0);
printf("%4.0f \t %6.1f\n", fahr, celsius);
fahr =fahr + step;
}
}