Last active
March 3, 2026 08:12
-
-
Save mit41301/1ed89c3ebc8765a0ea6a26f8f1c42f9b to your computer and use it in GitHub Desktop.
Fahrenheit TO Centigrade
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 10 REM Fahrenheit TO Centigrade | |
| 20 INPUT " Temperature in Fahrenheit = ",F | |
| 30 C=5/9*(F-32) | |
| 40 PRINT " Temperature in Centigrade = ",C | |
| 50 END | |
| 60 REM °F → °C |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment