Question
In Java --> Write a program that displays a table of the Celsius temperatures 0 through 100 (with increment of 10) and their Fahrenheit equivalents.
In Java --> Write a program that displays a table of the Celsius temperatures 0 through 100 (with increment of 10) and their Fahrenheit equivalents. The algebraic formula for converting a temperature from Celsius to Fahrenheit is: F = (9/5)C +32 where F is the Fahrenheit temperature and C is the Celsius temperature. The program must use a loop to display the table. Ask the user "Enter celcius starting value 0-9:" (if user selects say 3, then the table would show celsius values 3, 13, 23 ... 103) Do not use 1.8, 9.0 or 5.0 instead of 9/5. Use type casting to get correct results.
Enter celcius starting value 0-9: 33 Enter celcius starting value 0-9: 2 C F --- --- 2 ? 12 ? 22 ? ... 102 ?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started