RosettaCodeData/Task/Integer-comparison/ZX-Spectrum-Basic/integer-comparison.basic

3 lines
138 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
10 INPUT "Enter two integers: ";a;" ";b
20 PRINT a;" is ";("less than " AND (a<b));("equal to " AND (a=b));("greather than " AND (a>b));b