Skip to content

Instantly share code, notes, and snippets.

@mit41301
Last active March 3, 2026 08:12
Show Gist options
  • Select an option

  • Save mit41301/1ed89c3ebc8765a0ea6a26f8f1c42f9b to your computer and use it in GitHub Desktop.

Select an option

Save mit41301/1ed89c3ebc8765a0ea6a26f8f1c42f9b to your computer and use it in GitHub Desktop.
Fahrenheit TO Centigrade
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