0_0_26051636_24333.cpp:1:1: error: 'import' does not name a type
import java.math.BigInteger;
^
0_0_26051636_24333.cpp:2:1: error: 'import' does not name a type
import java.util.Scanner;
^
0_0_26051636_24333.cpp:5:12: error: expected ':' before 'static'
public static void main(String[] args) {
^
0_0_26051636_24333.cpp:5:29: error: 'String' has not been declared
public static void main(String[] args) {
^
0_0_26051636_24333.cpp:5:38: error: expected ',' or '...' before 'args'
public static void main(String[] args) {
^
0_0_26051636_24333.cpp:17:1: error: expected ';' after class definition
}
^
0_0_26051636_24333.cpp: In static member function 'static void Main::main(int*)':
0_0_26051636_24333.cpp:7:9: error: 'Scanner' was not declared in this scope
Scanner cin = new Scanner(System.in);
^
0_0_26051636_24333.cpp:8:13: error: 'cin' was not declared in this scope
T = cin.nextInt();
^
0_0_26051636_24333.cpp:9:9: error: 'BigInteger' was not declared in this scope
BigInteger er = new BigInteger("2");
^
0_0_26051636_24333.cpp:13:13: error: 'System' was not declared in this scope
System.out.println(er.pow(n).toString());
^
0_0_26051636_24333.cpp:13:32: error: 'er' was not declared in this scope
System.out.println(er.pow(n).toString());
^
|