RosettaCodeData/Task/Exponentiation-order/PascalABC.NET/exponentiation-order.pas

5 lines
101 B
ObjectPascal
Raw Permalink Normal View History

2024-11-04 20:28:54 -08:00
##
println('5**3**2 =',5**3**2);
println('(5**3)**2 =',(5**3)**2);
println('5**(3**2) =',5**(3**2));