运行 ❯
获取你自己的
Python
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
#Import math Library import math #find the� the greatest common divisor of the two integers print (math.gcd(3, 6)) print (math.gcd(6, 12)) print (math.gcd(12, 36)) print (math.gcd(-12, -36)) print (math.gcd(5, 12)) print (math.gcd(10, 0)) print (math.gcd(0, 34)) print (math.gcd(0, 0))
3 6 12 12 1 10 34 0