I need 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. I'm not sure how to do Celcius at 10 degree intervals and the corresponding Fahrenheit temperature.
this is all i have so far because i don't understand how to do a chart for 0 to 100 degrees Celcius at 10 degree intervals and the corresponding Fahrenheit temperature.
@ctrygirl
I don't know why you're asking for inputs, when you say you need to do a chart conversion from 0 to 100. You need a for loop, that starts with a variable at 0 and ends with 100, with variable=+10. Then take the variable, and convert to Fahrenheit. Fahr=(((variable*9)/5)+32.0) and cout Fahr