int gcd(int a,int b) { if(b==0) return a; return gcd(b,a%b); } int lcm(int a,int b) { return a/gcd(a,b)*b;//先除后乘,防止爆炸 }
如果本文帮助到了你,帮我点个广告可以咩(o′┏▽┓`o)