Advertisement
Guest User

Untitled

a guest
Jul 11th, 2017
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
COBOL 0.61 KB | None | 0 0
  1.     Identification division.
  2.     Program-id. Tafels.
  3.  
  4.     Environment division.
  5.     Configuration section.
  6.     Source-computer. Cobol-85.
  7.     Object-computer. Cobol-85.
  8.  
  9.     Data division.
  10.     Working-storage section.
  11.     77 seed     pic 9(1).
  12.     77 result   pic 99(1).
  13.  
  14.     Procedure division.
  15.     Main.
  16.         Perform Setup
  17.         Perform Initial-calc
  18.         Perform Repeat-calc
  19.         Stop run.
  20.  
  21.     Setup.
  22.         display "Van welk getal wenst u de tafel te zien? (1-9)"
  23.         accept seed
  24.         move zeros to result.
  25.         display "Deze gaat als volgt:"
  26.         display result.
  27.  
  28.     Initial-calc.
  29.         add seed to result
  30.         display result.
  31.  
  32.     Repeat-calc.
  33.         Perform Initial-calc 9 times.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement