how do you create a conversion table in C++

Recommended Answers

All 3 Replies

could you elaborate on that a little ? :)

Write a program that prints a Fahrenheit to Celsius conversion table. The
lower and upper values for the table are 20 and 300 degree Fahrenheit
respectively, with a step of 20 degrees

Do you know the conversion formula from Fahrenheit to Celsius?

If so the rest should be formatting issues. Use a loop from i = 20
to i <= 300, and use the conversion formula and display the
corresponding Celsius to a Fahrenheit, or vice versa.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.