InterviewSolution
Saved Bookmarks
| 1. |
Write an algorithm to convert temperature from Fahrenheit to Celsius. |
|
Answer» Step 1: Start. Step 2: Read F. Step 3: C=(5(F-32))/9. Step 4: Print C. Step 5: Stop. |
|