fork download
  1. PROGRAM power3_loop
  2. !*** 3rd power of a for 1 <= a <= 8
  3. IMPLICIT NONE
  4. INTEGER :: a, b
  5. DO a = 1, 8
  6. b = a*a*a
  7. PRINT*,a,"to the power of three = ",b
  8. END DO
  9. END PROGRAM power3_loop
  10. The
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.f95:10:

The
1
Error: Unclassifiable statement at (1)
stdout
Standard output is empty