/*
 * Problem 1-4
 * Write a program to print the Celsius to Fahrenheit table
 * Copyright (c) 1998 by John Weber.  All rights reserved.
 */
#include <stdio.h>

/* print Celcius-Fahrenheir table for celsius = 0, 20, ..., 300; 
   floating-point version */

int main(void)
{
	float fahr, celsius;
	int lower, upper, step;

	lower = 0;	/* lower limit of temperature table */
	upper = 300;	/* upper limit */
	step  = 20;	/* step size */

	printf("Celc  Fahr\n");	/* Heading */

	celsius = lower;
	while( celsius <= upper ) {
		fahr = (9.0/5.0) * celsius + 32.0;
		printf("%3.0f %6.1f\n", celsius, fahr);
		celsius = celsius + step;
	}
}
