标签: c#
我正在做一些简单的统计工作,需要计算大数之和,我正在使用System.Numerics.BigInteger
System.Numerics.BigInteger
例如我正在使用742^4
742^4
我在做什么错了?
答案 0 :(得分:6)
System.Numerics.BigInteger xx = 742; System.Numerics.BigInteger right = xx * xx * xx * xx;
xx被输入为int类型,然后被相乘并溢出,然后被填充到BigInteger中。从一开始就从一个大整数开始。