3,314
回編集
編集の要約なし |
細 (コメントの追加) |
||
1行目: | 1行目: | ||
local p = {} | local p = {} | ||
function getLmc(num1, num2) | function getLmc(num1, num2) --2数の最小公倍数を求める関数 | ||
if type(num1) == number and type(num2) == number then | if type(num1) == number and type(num2) == number then | ||
if num1 == 0 or num2 == 0 then | if num1 == 0 or num2 == 0 then |
回編集