标签:
1、求最大公约数(GCD)
int gcd(int x,int y){ if (!y) return x; return gcd(b,a%b);}
[备份]部分常用函数
原文地址:http://www.cnblogs.com/jinkun113/p/4803254.html