1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-04 11:10:15 +00:00
qb64/programs/samples/pete/degrees.bas
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

16 lines
337 B
QBasic

REM This is a program that converts Fahrenheit temperatures to Celsius
REM temperatures.
CONST SHIFT# = 32#
CONST SCALE = 1.8#
CONST TFChar = "F "
CONST TCchar = "C "
DIM TF AS DOUBLE
DIM TC AS DOUBLE
CLS
INPUT "Enter the temperature in Fahrenheit "; TF
TC = (TF - SHIFT) / SCALE
PRINT TF; TFChar; "="; TC; TCchar
END