java字符串乘法,输出 2 的 1000 次方 import java.math.BigInteger; public class Main { public static void main(String[] args) { BigInteger base = new BigInteger("2"); BigInteger exponent = new BigInteger("1000"); BigInteger result = base.pow(exponent.intValue()); System.out.println(result)...