最小公倍数 与 最大公因数(辗转相除法)

int gcd(int a,int b){
return b?gcd(b,a%b):a;
}
最大公因数
posted @ 2022-09-05 15:02  硬核小马  阅读(81)  评论(0)    收藏  举报