说明: NET Reflector enables you to easily view, navigate, and search through, the class hierarchies of .NET assemblies, even if you don't have the code for them. With it, you can decompile and analyze .NET assemblies in C#, Visual Basic, and IL. <host5566> 在 2010-01-02 上传 | 大小:1048576 | 下载45次
说明: Pascal基本算法整理,学习用很好 1.数论算法 求两数的最大公约数 function gcd(a,b:integer):integer; begin if b=0 then gcd:=a else gcd:=gcd (b,a mod b); end ; 求两数的最小公倍数 function lcm(a,b:integer):integer; begin if a0 do inc(lcm,a); end; 素数的求法 A.小范围内判断一个数是否为质数: function prime (n: <alienzinc> 在 2010-01-02 上传 | 大小:21504 | 下载13次