RosettaCodeData/Task/Exponentiation-order/ALGOL-W/exponentiation-order.alg
2023-07-01 13:44:08 -04:00

5 lines
173 B
Text

begin
write( "5**3**2: ", round( 5 ** 3 ** 2 ) );
write( "(5**3)**2: ", round( ( 5 ** 3 ) ** 2 ) );
write( "5**(3**2): ", round( 5 ** round( 3 ** 2 ) ) )
end.