temperature conversion

I have to Create a program to display a temperature conversion chart for 0 to 100 degrees Celcius at 10 degree intervals and the corresponding Fahrenheit temperature.
Last edited on
Here's the pseudocode:

1) Have a variable 'celcius' that starts at 0. (Use float/double)
2) Calculate Fahrenheit value. (float/double)
3) Output 'celcius' and 'fahrenheit'. (use prinf() or cout)
4) Increase 'celcius' by 10.
5) Repeat 2-5 until celcius > 100. (Use control structure while or for)
Topic archived. No new replies allowed.