//******************************************************** // // C Midterm - Question 7 // // Name: Maya Mahin // // Class: C Programming, Spring 2025 // // Date: March 23, 2025 // // Description: Program which facilitates the conversion of fahrenheit to // celsius temperatures and vice versa // //******************************************************** #include <stdio.h> float toCelsius(float fahrenheitTemp); float toFahrenheit(float celsiusTemp); int main(void) { for (int i=0; i<101; i++) { float celsiusRetVal=toCelsius(i); } // float fahrenheitRetVal=toFahrenheit(0); // printf("The temperature in Fahrenheit is: %.1f\n", fahrenheitRetVal); return 0; } //************************************************************** // Function: toCelsius // // Purpose: Receives a temperature in fahrenheit, converts it // to Celsius and returns the converted value // // Parameters: // // temp - input temperature in fahrenheit // // Returns: temp_convert - input temperature in celsius // //************************************************************** float toCelsius(float fahrenheitTemp){ float celsiusTemp=(fahrenheitTemp - 32) * 5/9; return celsiusTemp; } //************************************************************** // Function: toFahrenheit // // Purpose: Receives a temperature in celsius, converts it // to Fahrenheit and returns the converted value // // Parameters: // // temp - input temperature in celsius // // Returns: temp_convert - input temperature in fahrenheit // //************************************************************** float toFahrenheit(float celsiusTemp){ float fahrenheitTemp=(celsiusTemp * 9/5) + 32; return fahrenheitTemp; }
Standard input is empty
The temperature in Celsius is: -17.8 The temperature in Celsius is: -17.2 The temperature in Celsius is: -16.7 The temperature in Celsius is: -16.1 The temperature in Celsius is: -15.6 The temperature in Celsius is: -15.0 The temperature in Celsius is: -14.4 The temperature in Celsius is: -13.9 The temperature in Celsius is: -13.3 The temperature in Celsius is: -12.8 The temperature in Celsius is: -12.2 The temperature in Celsius is: -11.7 The temperature in Celsius is: -11.1 The temperature in Celsius is: -10.6 The temperature in Celsius is: -10.0 The temperature in Celsius is: -9.4 The temperature in Celsius is: -8.9 The temperature in Celsius is: -8.3 The temperature in Celsius is: -7.8 The temperature in Celsius is: -7.2 The temperature in Celsius is: -6.7 The temperature in Celsius is: -6.1 The temperature in Celsius is: -5.6 The temperature in Celsius is: -5.0 The temperature in Celsius is: -4.4 The temperature in Celsius is: -3.9 The temperature in Celsius is: -3.3 The temperature in Celsius is: -2.8 The temperature in Celsius is: -2.2 The temperature in Celsius is: -1.7 The temperature in Celsius is: -1.1 The temperature in Celsius is: -0.6 The temperature in Celsius is: 0.0 The temperature in Celsius is: 0.6 The temperature in Celsius is: 1.1 The temperature in Celsius is: 1.7 The temperature in Celsius is: 2.2 The temperature in Celsius is: 2.8 The temperature in Celsius is: 3.3 The temperature in Celsius is: 3.9 The temperature in Celsius is: 4.4 The temperature in Celsius is: 5.0 The temperature in Celsius is: 5.6 The temperature in Celsius is: 6.1 The temperature in Celsius is: 6.7 The temperature in Celsius is: 7.2 The temperature in Celsius is: 7.8 The temperature in Celsius is: 8.3 The temperature in Celsius is: 8.9 The temperature in Celsius is: 9.4 The temperature in Celsius is: 10.0 The temperature in Celsius is: 10.6 The temperature in Celsius is: 11.1 The temperature in Celsius is: 11.7 The temperature in Celsius is: 12.2 The temperature in Celsius is: 12.8 The temperature in Celsius is: 13.3 The temperature in Celsius is: 13.9 The temperature in Celsius is: 14.4 The temperature in Celsius is: 15.0 The temperature in Celsius is: 15.6 The temperature in Celsius is: 16.1 The temperature in Celsius is: 16.7 The temperature in Celsius is: 17.2 The temperature in Celsius is: 17.8 The temperature in Celsius is: 18.3 The temperature in Celsius is: 18.9 The temperature in Celsius is: 19.4 The temperature in Celsius is: 20.0 The temperature in Celsius is: 20.6 The temperature in Celsius is: 21.1 The temperature in Celsius is: 21.7 The temperature in Celsius is: 22.2 The temperature in Celsius is: 22.8 The temperature in Celsius is: 23.3 The temperature in Celsius is: 23.9 The temperature in Celsius is: 24.4 The temperature in Celsius is: 25.0 The temperature in Celsius is: 25.6 The temperature in Celsius is: 26.1 The temperature in Celsius is: 26.7 The temperature in Celsius is: 27.2 The temperature in Celsius is: 27.8 The temperature in Celsius is: 28.3 The temperature in Celsius is: 28.9 The temperature in Celsius is: 29.4 The temperature in Celsius is: 30.0 The temperature in Celsius is: 30.6 The temperature in Celsius is: 31.1 The temperature in Celsius is: 31.7 The temperature in Celsius is: 32.2 The temperature in Celsius is: 32.8 The temperature in Celsius is: 33.3 The temperature in Celsius is: 33.9 The temperature in Celsius is: 34.4 The temperature in Celsius is: 35.0 The temperature in Celsius is: 35.6 The temperature in Celsius is: 36.1 The temperature in Celsius is: 36.7 The temperature in Celsius is: 37.2 The temperature in Celsius is: 37.8