Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Fact COBOL

identification division.
program-id. fact.
data division.
working-storage section.

77 fact pic 9(15) comp.
77 n pic 99.
77 i pic 99.
77 facts pic x(18).
77 ist pic xx.
procedure division.
move 0 to i.
move 16 to n.
move 1 to fact.

perform until i greater than n

move fact to facts
display i "!"facts
add 1 to i
multiply i by fact
end-multiply
end-perform.
stop-run.



Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.