fork download
  1. identification DIVISION.
  2. PROGRAM-ID. PROGRAM1.
  3. AUTHOR. Antonio Neuton da Silva Júnior
  4. DATE-WRITTEN. 10/02/2011.
  5.  
  6.  
  7.  
  8. data division.
  9. WORKING-STORAGE SECTION.
  10. 77 nome PIC A(010) value "João".
  11. 77 a PIC 99V999 VALUE 12.236 .
  12. 77 b PIC 99V99 VALUE ZERO .
  13. 77 c PIC 9V9 VALUE 3.9 .
  14. 77 d PIC 9v9 VALUE 2.1 .
  15.  
  16. PROCEDURE DIVISION.
  17.  
  18. IF a < b
  19. display "A variável nome é",nome
  20. ADD a TO b ROUNDED
  21. DISPLAY "b é ", b
  22. ELSE.
  23. ADD c TO d
  24. DISPLAY "d é ", d
  25. END-IF
  26.  
  27. STOP RUN.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cbl:    23: error: syntax error, on or before '.'
prog.cbl:    23: error: unknown or wrong statement, on or before '.'
prog.cbl:    25: error: syntax error, on or before 'END-IF'
prog.cbl:    25: error: unknown or wrong statement, on or before 'END-IF'
stdout
Standard output is empty