问题标题: 酷町堂:gcd

0
0

0
0
尹宗鑫
尹宗鑫
新手守护
新手守护
int gcd(int x,int y){
    if(y==0){
        return x;
    }
    return gcd(y,x%y);
}

求a,b的最大公约数

0
我要回答