RosettaCodeData/Task/Exponentiation-order/Fortran/exponentiation-order.f

4 lines
136 B
FortranFixed
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
write(*, "(a, i0)") "5**3**2 = ", 5**3**2
write(*, "(a, i0)") "(5**3)**2 = ", (5**3)**2
write(*, "(a, i0)") "5**(3**2) = ", 5**(3**2)