gcd

int gcd(int a, int b){
return b? gcd(b, a % b) : a;
}

posted @ 2021-11-17 14:49  羽错光阴  阅读(207)  评论(0)    收藏  举报