本文整理汇总了C#中BigInteger.Power方法的典型用法代码示例。如果您正苦于以下问题:C# BigInteger.Power方法的具体用法?C# BigInteger.Power怎么用?C# BigInteger.Power使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BigInteger
的用法示例。
在下文中一共展示了BigInteger.Power方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Power_with_exponent_0_is_one
public void Power_with_exponent_0_is_one()
{
BigInteger i = new BigInteger(1, 0x1);
Expect(SameValue(i.Power(0), 1, new uint[] { 1 }));
}
示例2: Power_on_negative_exponent_fails
public void Power_on_negative_exponent_fails()
{
BigInteger i = new BigInteger(1, 0x1);
i.Power(-2);
}
示例3: Power_on_power_of_two_exponent_works
public void Power_on_power_of_two_exponent_works()
{
BigInteger i = new BigInteger(1, 0x2);
BigInteger p = i.Power(256);
BigInteger p2_to_256 = new BigInteger(1,
0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0);
Expect(p == p2_to_256);
}
示例4: Power_on_completely_odd_exponent_works
public void Power_on_completely_odd_exponent_works()
{
BigInteger i = new BigInteger(1,0x2);
BigInteger p = i.Power(255);
BigInteger p2_to_255 = new BigInteger(1,
0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0);
Expect(p == p2_to_255);
}