- 8 9 10 11 12 Problem Description And Given Info Write A Program That Will Collect As Input From The User A Temperature 1 (138.9 KiB) Viewed 39 times
8 9 10 11 12 Problem Description and Given Info Write a program that will collect, as input from the user, a temperature
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
8 9 10 11 12 Problem Description and Given Info Write a program that will collect, as input from the user, a temperature
8 9 10 11 12 Problem Description and Given Info Write a program that will collect, as input from the user, a temperature in Fahrenheit; and then compute and display the equivalent temperature in Kelvin. The Fahrenheit temperature will be inputted as a double. The temperature in Kelvin will be computed and outputted as a double. Here are some examples of what the user should see when the program runs. Example 1 Enter temperature in Fahrenheit: 100 13 14 100.00 degrees Fahrenheit is 310.93 degrees Kelvin 15 16 17 18 Example 2 Enter temperature in Fahrenheit: -20.25 1 // import the Scanner from the Java standard Library 2 3 4 public class TempConversion 5 public static void main(String[] args) { 6 7 -20.25 degrees Fahrenheit is 244.12 degrees Kelvin For the given inputs, make sure that your program output looks exactly like the examples above (including spelling, capitalization, punctuation, spaces, and decimal points). Helpful Info: Fahrenheit to Kelvin formula 5 K = (F-32) × + 273.15 TempConversion.java // Below this comment: declare and instantiate a Scanner // Below this comment: declare any other variables you may need // Below this comment: collect the requried inputs from the user // Below this comment: compute and store the required output values // Below this comment: disply the required results Load default template...