RosettaCodeData/Task/Exponentiation-order/Sinclair-ZX81-BASIC/exponentiation-order.basic
2023-07-01 13:44:08 -04:00

3 lines
100 B
Text

10 PRINT "5**3**2 = ";5**3**2
20 PRINT "(5**3)**2 = ";(5**3)**2
30 PRINT "5**(3**2) = ";5**(3**2)