Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
COBOL 0.71 KB | None | 0 0
  1. FABONNES.
  2. *SITUATION : PLUS D'ABONNES, MAIS ENCORE PEUT-ÊTRE DES APPELS !
  3.     READ TELEPHONE AT END GO TO FP.
  4. *IL N'Y A NI ABONNÉ, NI APPEL DE PASSER, ON CLOSE LE TOUT.
  5.     END-READ.
  6.    
  7.    
  8. *IL N'Y A PLUS D'ABONNES, ON LISTE DONC LES TÉLÉPHONES RESTANTS PUISQU'ILS SERONT TOUS DES ANOMALIES.
  9.    
  10. FTELEPHONE.
  11. * SITUATION : PLUS D'APPELS MAIS ENCORE PEUT-ÊTRE DES ABONNÉS !
  12.     READ ABONNES AT END GO TO FP.
  13. *IL N'Y A NI ABONNÉ, NI APPEL DE PASSER, ON CLOSE LE TOUT.
  14.     END-READ.
  15. *IL N'Y A PLUS D'APPELS, ON LISTE DONC LES ABONNÉS RESTANTS PUISQU'ILS SERONT TOUS DES ANOMALIES.
  16.     Perform DABNNAP Thru FABNNAP.
  17.    
  18.    
  19. FP.
  20.     CLOSE TELEPHONES.
  21.     CLOSE ABONNES.
  22.     CLOSE ACTUALISES.
  23.     CLOSE FACTURES.
  24.     CLOSE ANOMALIES.
  25.     STOP RUN.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement