本帖最后由 史云龙 于 2014-12-12 17:07 编辑
BigInteger- import java.math.BigInteger;
- public class Test {
- public static void main(String[] args) {
- BigInteger result = new BigInteger("1");//为result赋初始值,为1
- for (int i = 1; i <= 100; i++) {
- BigInteger num = new BigInteger(String.valueOf(i));
- result = result.multiply(num);//调用自乘方法
- }
- System.out.println(result);//输出结果
- System.out.println(String.valueOf(result).length());//输出长度
- }
- }
复制代码
|