loops

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 (Fahrenheit).
Use the formula: celsTemp = 5/9 (farenTemp – 32.00)

I cant understand what the question wants, what are the starting, ending and the step values are ?
Do Not Double Post. Move this question to your other post.

http://www.cplusplus.com/forum/beginner/160657/
They are two different questions
Doesnt Matter. You can ask it in your other post aswell.
It's pretty straightforward. I can't really explain it any better than what's already there, so best way to illustrate it would be with examples:

-------
If:
start=10
end=50
step=10

You would print (F) and (C) temperatures for 10, 20, 30, 40, and 50 (F)

-------
If:
start=15
end=25
step=3

You would print (F) and (C) temps for 15, 18, 21, 24 (F)


etc


Of course you will want to get start/end/step from user input.
What would be the code for it ?
You tell us. Use @Disch's Post and get started on something. Come back here after you've tried and show us what you've tried and we'll help out.
Topic archived. No new replies allowed.