2015年1月26日

数论公式与代码储备,

摘要: 最大公约数int gcd(int x,int y){ int t ;while(y > 0){t = x % y;x = y ; y = t ;}return x;}求素数 math。h头文件int is_prime(int u){ if(u==0||u==1) return false; //... 阅读全文

posted @ 2015-01-26 19:19 陆熠十四 阅读(199) 评论(0) 推荐(0) 编辑

导航