language: Fortran (gfortran-4.3.4)
date: 123 days 15 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
DO WHILE I < 1
LET I = I + 1
LOOP
 
DO WHILE N < 2
LET N = N + 1
LOOP
 
DO WHILE D < 3
LET D = D + 2
LOOP
 
LET A = A + (I * 1)
LET A = A + (N * 10)
LET A = A + (D * 100)
LET A = A + 14 * D + 1
 
IF A < 400 THEN
LET B = A - 11 * I - 3
END IF
 
IF A > 400 THEN
LET B = A + 28 * N + 3
END IF
 
END
prog.f95:1:

DO WHILE I < 1
1
Error: Unclassifiable statement at (1)
prog.f95:2:

LET I = I + 1
1
Error: Unclassifiable statement at (1)
prog.f95:3:

LOOP
1
Error: Unclassifiable statement at (1)
prog.f95:5:

DO WHILE N < 2
1
Error: Unclassifiable statement at (1)
prog.f95:6:

LET N = N + 1
1
Error: Unclassifiable statement at (1)
prog.f95:7:

LOOP
1
Error: Unclassifiable statement at (1)
prog.f95:9:

DO WHILE D < 3
1
Error: Unclassifiable statement at (1)
prog.f95:10:

LET D = D + 2
1
Error: Unclassifiable statement at (1)
prog.f95:11:

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

LET A = A + (I * 1)
1
Error: Unclassifiable statement at (1)
prog.f95:14:

LET A = A + (N * 10)
1
Error: Unclassifiable statement at (1)
prog.f95:15:

LET A = A + (D * 100)
1
Error: Unclassifiable statement at (1)
prog.f95:16:

LET A = A + 14 * D + 1
1
Error: Unclassifiable statement at (1)
prog.f95:18:

IF A < 400 THEN
1
Error: Unclassifiable statement at (1)
prog.f95:19:

LET B = A - 11 * I - 3
1
Error: Unclassifiable statement at (1)
prog.f95:20.3:

END IF
   1
Error: Expecting END PROGRAM statement at (1)
prog.f95:22:

IF A > 400 THEN
1
Error: Unclassifiable statement at (1)
prog.f95:23:

LET B = A + 28 * N + 3
1
Error: Unclassifiable statement at (1)
prog.f95:24.3:

END IF
   1
Error: Expecting END PROGRAM statement at (1)