a hint for solving a problem

would any body help me to solve a problem that says 9. Write a complete C++ program that produces a table showing the temperature equivalents in degrees Fahrenheit and degrees in Celsius. Let the user enter the starting, ending, and step values. Use the formula:
celsTemp = 5.0/9.0 (farenTemp – 32.00)

I JUST NEED A HINT TO KNOW WHAT IS THE STARTING AND THE ENDING AND STEP VALUES.
So you don't understand what is being asked?

I think this is the idea:

Start value : 0
  End value : 100
 Step value : 10

C    F
---  ---
0    32
10
20
30
40
50
60
70
80
90
100  212


(plus the other values in F, of course)
Last edited on
Topic archived. No new replies allowed.