Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a script to take the temperature from the user in Celsius, convert it into Fahrenheit and display it to the user. You can use
Write a script to take the temperature from the user in Celsius, convert it into Fahrenheit and display it to the user. You can use the following formula for this purpose:
F=9C/5+32
Where, C is the temperature in Celsius and F is the temperature in Fahrenheit.
Note: You can assume that C and F are integer values.
Input Format:
The first line represents the temperature in Celsius.
Sample Input 1:
25
Sample Output 1:
The temperature in Fahrenheit is 77
Sample Input 2:
32
Sample Output 2:
The temperature in Fahrenheit is 89.
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