数论算法 txt格式
数论算法 function gcd(a,b:integer):integer; begin if b=0 then gcd:=a else gcd:=gcd (b,a mod b); end ;
下载地址
用户评论