RosettaCodeData/Task/Exponentiation-order/Simula/exponentiation-order.simula
2023-07-01 13:44:08 -04:00

3 lines
167 B
Text

OutText("5** 3 **2: "); OutInt(5** 3 **2, 0); Outimage;
OutText("(5**3)**2: "); OutInt((5**3)**2, 0); Outimage;
OutText("5**(3**2): "); OutInt(5**(3**2), 0); Outimage