Question
Enter the temperature in Celsius: 15
The temperature in Fahrenheit is 59
Hints: Formula for Celsius to Fahrenheit conversion: F=C⨯9/5+32
To complete this programming assignment, read Sections 2.1, 2.2, and 2.6 of your reference book.
Comment and format your code properly.
Create a profile of your program as you develop it. Please use “My_Program_Profile.docx”.
Solution Preview
These solutions may offer step-by-step problem-solving explanations or good writing examples that include modern styles of formatting and construction of bibliographies out of text citations and references. Students may use these solutions for personal skill-building and practice. Unethical use is strictly forbidden.
Description of the Code:First I created a new public class called TemperatureConversion with a main function that is supposed to contain the necessary elements for this problem (messages, variables, operations, etc).
Following the Problem Statement, I defined an integer variable named Celsius. Since the keyboard input will be used, I provided a comment message saying “Enter the temperature in Celsius: ” and I also defined a Scanner with a simple name input. Celsius degrees are being inserted through this scanner and then comes the next integer variable, named Fahrenheit....
By purchasing this solution you'll be able to access the following files:
Solution.java and Solution.docx.