gcd

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

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