import java.math.*;
public class Test1 { public static void main(String[] args) { BigInteger a = BigInteger.valueOf(2); BigInteger b = a.pow(200); System.out.println(b); }}这样可否