InterviewSolution
Saved Bookmarks
| 1. |
Write down a program to convert temperature from celsius to fahrenheit |
|
Answer» Answer: Below is the step by step descriptive LOGIC to CONVERT temperature from degree Celsius to Fahrenheit. INPUT temperature in Celsius from user. Store it in some variable say celsius . Apply FORMULA to convert the temperature to Fahrenheit i.e. fahrenheit = celsius * 9 / 5) + 32 . |
|