Programming Project One
Engineering Change Notice

ECN1

 

Date: 28 September 2005

Author: Sue Evans, bogar@cs.umbc.edu

The CelsiusToFahreneit() function has been changed to take a single argument of type double and to return a double, rather than taking and returning an integer. The new function prototype is now:

double CelsiusToFahrenheit (double celsius);
The original version of the function, as found in Lecture 3, should be used as is. It was written to take an argument of type double and to return a double so that it is a more general function and can be used as a module for all programs requiring the conversion of temperatures from the Celsius to the Fahrenheit scale.