Question: Objective: To create a C + + console application that generates a simple Fahrenheit to Celsius conversion table based on user input. General Instructions: The

Objective: To create a C++ console application that generates a simple Fahrenheit to Celsius conversion table based on user input.
General Instructions: The overall design and format of your program is up to you. You should prompt the user to input Fahrenheit start, stop, and step values for your table. Using these values your program should generate a user friendly Fahrenheit to Celsius conversion table as illustrated below. Celsius output values should be rounded or formatted to one decimal place.
cel -5**( fah-32)9
Design Hints: Prompt the user to enter the start, stop, and step values before the counter control loop using cin and cout. Use your fah variable to iterate the for loop, place your conversion formula within the body of the for loop. Display fah and calculated cel values within the loop.
**PLEASE USE A FOR LOOP** im so confused
//prompt the user for the start, stop, and step val
for(fah=start; fah=stop; fah+=step)
// conversion formula
// display formatted fah and cel values
}
Sample Run:
Enter Start Fahrenheit: 80
Enter Stop Fahrenheit: 100
Enter Step: 2
Fah Cel
80,26.7
82,27.8
84,28.9
86,30.0
88,31.1
90,32.2
92,33.3
94,34.4
96
98,36.7
100,37.8
Objective: To create a C + + console application

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!