fork download
  1. #include <stdio.h>
  2.  
  3. // function prototypes
  4. float toCelsius (int theFahrenheitTemp);
  5. float toFahrenheit (int theCelsiusTemp);
  6.  
  7. int main ()
  8. {
  9. int i; // loop index
  10.  
  11. for(i = 0; i <=110; i +=10) // count by 110 by incriments of 10
  12. {
  13. printf("Celsius to Fahrenheit:\n"); //line header
  14. printf("%d C = %2f F\n", i, toFahrenheit(i)); // Labels for line header and data grab
  15. }
  16.  
  17.  
  18. for(i = 32; i<=232; i +=10) // count to 232 by incriments of 10
  19. {
  20. printf("Fahrenheit to Celcius:\n"); //line header
  21. printf("%d F = %2f C\n", i, toCelsius(i)); //labels for line header and data grab
  22. }
  23.  
  24. return 0; // return 1 loop
  25. }
  26.  
  27. //*********************************************************************
  28. //
  29. // Function toCelsius
  30. //
  31. // Description : Converts Fahrenheit to Celsius
  32. //
  33. // Parameters : theFahrenheitTemp - holds value of fahrenheit to be converted
  34. //
  35. // Returns : theFahrenheitTemp - Converted temp from C to F
  36. //
  37. //**************************************************************************
  38. float toCelsius (int theFahrenheitTemp)
  39. {
  40. theFahrenheitTemp = (theFahrenheitTemp - 32) * 5 / 9; // Math equation for C to F
  41. return theFahrenheitTemp; // Returns converted value to printf statement
  42. }
  43.  
  44. //**************************************************************************
  45. //
  46. // Function : toFahrenheit
  47. //
  48. // Description : Converts Celsius to Fahrenheit
  49. //
  50. // Parameters : theCelsuisTemp - holds value of Celsius temp to be converted
  51. //
  52. // Returns : theCelsuisTemp - Converted temp from F to C
  53. //
  54. //*************************************************************************
  55. float toFahrenheit (int theCelsiusTemp)
  56. {
  57. theCelsiusTemp = (theCelsiusTemp / 5 * 9) + 32; // Math equation for F to C
  58. return theCelsiusTemp; // Returns converted value to printf statement
  59. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
Celsius to Fahrenheit:
0 C = 32.000000 F
Celsius to Fahrenheit:
10 C = 50.000000 F
Celsius to Fahrenheit:
20 C = 68.000000 F
Celsius to Fahrenheit:
30 C = 86.000000 F
Celsius to Fahrenheit:
40 C = 104.000000 F
Celsius to Fahrenheit:
50 C = 122.000000 F
Celsius to Fahrenheit:
60 C = 140.000000 F
Celsius to Fahrenheit:
70 C = 158.000000 F
Celsius to Fahrenheit:
80 C = 176.000000 F
Celsius to Fahrenheit:
90 C = 194.000000 F
Celsius to Fahrenheit:
100 C = 212.000000 F
Celsius to Fahrenheit:
110 C = 230.000000 F
Fahrenheit to Celcius:
32 F = 0.000000 C
Fahrenheit to Celcius:
42 F = 5.000000 C
Fahrenheit to Celcius:
52 F = 11.000000 C
Fahrenheit to Celcius:
62 F = 16.000000 C
Fahrenheit to Celcius:
72 F = 22.000000 C
Fahrenheit to Celcius:
82 F = 27.000000 C
Fahrenheit to Celcius:
92 F = 33.000000 C
Fahrenheit to Celcius:
102 F = 38.000000 C
Fahrenheit to Celcius:
112 F = 44.000000 C
Fahrenheit to Celcius:
122 F = 50.000000 C
Fahrenheit to Celcius:
132 F = 55.000000 C
Fahrenheit to Celcius:
142 F = 61.000000 C
Fahrenheit to Celcius:
152 F = 66.000000 C
Fahrenheit to Celcius:
162 F = 72.000000 C
Fahrenheit to Celcius:
172 F = 77.000000 C
Fahrenheit to Celcius:
182 F = 83.000000 C
Fahrenheit to Celcius:
192 F = 88.000000 C
Fahrenheit to Celcius:
202 F = 94.000000 C
Fahrenheit to Celcius:
212 F = 100.000000 C
Fahrenheit to Celcius:
222 F = 105.000000 C
Fahrenheit to Celcius:
232 F = 111.000000 C