ExtendedGreatestCommonDivisorI 函数

完全限定名称:Std.Math.ExtendedGreatestCommonDivisorI

function ExtendedGreatestCommonDivisorI(a : Int, b : Int) : (Int, Int)

总结

返回一个元组(u,v),以便 ua+vb=GCD(a,b) 注意:GCD 始终为正,但 GCD(0,0)=0 除外。