/*
	ctof  

	This Numerator function converts degrees expressed in Celsius to
	degrees Fahrenheit.
*/

new
"Celsius temperature? "		/* Prompt for a temperature...*/
get ctemp			/* ...store it in variable named ctemp...*/
"Temp in degrees Fahrenheit "
ctemp * 9 / 5 + 32		/* ...and show the user the conversion. */


