home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / nrpas / bico.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1994-04-11  |  106 b   |  5 lines

  1. FUNCTION bico(n,k: integer): real;
  2. BEGIN
  3.    bico := round(exp(factln(n)-factln(k)-factln(n-k)));
  4. END;
  5.