fork(3) download
  1. C Program to get the CC#5 Coordinates
  2. Program CC5
  3. C
  4. IMPLICIT REAL*8 (e-f,k-o)
  5. C
  6. CALL Get_Coords (North,East)
  7. WRITE (*,1000) North, East
  8. 1000 FORMAT ('Cache coordinates: N50',F7,3,', E014',F7,3)
  9. C
  10. STOP
  11. END
  12. C
  13. C Get_Coords
  14. SUBROUTINE Get_Coords (polN, polE)
  15. C
  16. IMPLICIT REAL*8 (e-f,k-z)
  17. INTEGER I
  18. C
  19. OffN = 0,780
  20. OffE = 2,385
  21. KonN = 0,160
  22. KonE = 2,210
  23. ExpN = 1,010
  24. ExpE = 1,210
  25. C
  26. polN = OffN
  27. polE = OffE
  28. C
  29. DO 100 I = 1,6
  30. C
  31. polN = KonN * ExpN**I + polN
  32. polE = KonE * ExpE**I + polE
  33. C
  34. 100 CONTINUE
  35. C
  36. RETURN
  37. END
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.f95:1:

C     Program to get the CC#5 Coordinates
1
Error: Unclassifiable statement at (1)
prog.f95:3:

C
1
Error: Unclassifiable statement at (1)
prog.f95:4.21:

      IMPLICIT REAL*8 (e-f,k-o)
                     1
Error: Nonstandard type declaration REAL*8 at (1)
prog.f95:5:

C
1
Error: Unclassifiable statement at (1)
prog.f95:8.42:

1000  FORMAT ('Cache coordinates: N50',F7,3,', E014',F7,3)
                                          1
Error: Period required in format specifier at (1)
prog.f95:8.44:

1000  FORMAT ('Cache coordinates: N50',F7,3,', E014',F7,3)
                                            1
Error: Unexpected element in format string at (1)
prog.f95:9:

C
1
Error: Unclassifiable statement at (1)
prog.f95:7.19:

      WRITE (*,1000) North, East
                   1
Error: FORMAT label 1000 at (1) not defined
prog.f95:12:

C
1
Error: Unclassifiable statement at (1)
prog.f95:13:

C     Get_Coords
1
Error: Unclassifiable statement at (1)
prog.f95:15:

C
1
Error: Unclassifiable statement at (1)
prog.f95:16.21:

      IMPLICIT REAL*8 (e-f,k-z)
                     1
Error: Nonstandard type declaration REAL*8 at (1)
prog.f95:18:

C
1
Error: Unclassifiable statement at (1)
prog.f95:19.6:

      OffN = 0,780
      1
Error: Unclassifiable statement at (1)
prog.f95:20.6:

      OffE = 2,385
      1
Error: Unclassifiable statement at (1)
prog.f95:21.6:

      KonN = 0,160
      1
Error: Unclassifiable statement at (1)
prog.f95:22.6:

      KonE = 2,210
      1
Error: Unclassifiable statement at (1)
prog.f95:23.6:

      ExpN = 1,010
      1
Error: Unclassifiable statement at (1)
prog.f95:24.6:

      ExpE = 1,210
      1
Error: Unclassifiable statement at (1)
prog.f95:25:

C
1
Error: Unclassifiable statement at (1)
prog.f95:28:

C
1
Error: Unclassifiable statement at (1)
prog.f95:30:

C
1
Error: Unclassifiable statement at (1)
prog.f95:33:

C
1
Error: Unclassifiable statement at (1)
prog.f95:35:

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