sample.pl
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:1k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. #!/usr/bin/perl -w
  2. # Some sample GMP module operations
  3. # Copyright 2001, 2004 Free Software Foundation, Inc.
  4. #
  5. # This file is part of the GNU MP Library.
  6. #
  7. # The GNU MP Library is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU Lesser General Public License as published
  9. # by the Free Software Foundation; either version 3 of the License, or (at
  10. # your option) any later version.
  11. #
  12. # The GNU MP Library is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  15. # License for more details.
  16. #
  17. # You should have received a copy of the GNU Lesser General Public License
  18. # along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  19. use strict;
  20. use GMP;
  21. print "using GMP module $GMP::VERSION and GMP library ",GMP::version(),"n";
  22. use GMP::Mpz qw(:all);
  23. print "the 200th fibonacci number is ", fib(200), "n";
  24. print "next prime after 10**30 is (probably) ", nextprime(mpz(10)**30), "n";
  25. use GMP::Mpq qw(:constants);
  26. print "the 7th harmonic number is ", 1+1/2+1/3+1/4+1/5+1/6+1/7, "n";
  27. use GMP::Mpq qw(:noconstants);
  28. use GMP::Mpf qw(mpf);
  29. my $f = mpf(1,180);
  30. $f >>= 180;
  31. $f += 1;
  32. print "a sample mpf is $fn";