0pts gcd函数
int gcd(int x,int y){ return (!y)?x:gcd(y,y%x); }
100pts gcd函数
int gcd(int x,int y){ return (!y)?x:gcd(y,x%y); }
有区别吗?