java求最小公倍數(親測秒懂)

啊道~發表於2020-12-04

直接上程式碼

public static int gcd(int a,int b)
{
int r;
while ((r=a%b)!=0)
{
a=b;
b=r;
}
return b;
}

在這裡插入圖片描述

相關文章