ExtendedGreatestCommonDivisorL 函数

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

function ExtendedGreatestCommonDivisorL(a : BigInt, b : BigInt) : (BigInt, BigInt)

总结

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