0
0
0
0
0
尹宗鑫
新手守护
新手守护
int gcd(int x,int y) { if(y==0) //如果后面的y=0返回前面的x return x; else return gcd(y,x%y); }
0
0
0