0_0_28504886_5331.cpp:1:1: error: 'import' does not name a type
import java.math.BigInteger;
^
0_0_28504886_5331.cpp:2:1: error: 'import' does not name a type
import java.util.Scanner;
^
0_0_28504886_5331.cpp:5:12: error: expected ':' before 'static'
public static void main(String[] args){
^
0_0_28504886_5331.cpp:5:29: error: 'String' has not been declared
public static void main(String[] args){
^
0_0_28504886_5331.cpp:5:38: error: expected ',' or '...' before 'args'
public static void main(String[] args){
^
0_0_28504886_5331.cpp:19:1: error: expected ';' after class definition
}
^
0_0_28504886_5331.cpp: In static member function 'static void Main::main(int*)':
0_0_28504886_5331.cpp:6:9: error: 'Scanner' was not declared in this scope
Scanner cin=new Scanner(System.in);
^
0_0_28504886_5331.cpp:8:11: error: 'cin' was not declared in this scope
T=cin.nextInt();
^
0_0_28504886_5331.cpp:9:9: error: 'BigInteger' was not declared in this scope
BigInteger x,y,z;
^
0_0_28504886_5331.cpp:11:13: error: 'x' was not declared in this scope
x=cin.nextBigInteger();
^
0_0_28504886_5331.cpp:12:13: error: 'y' was not declared in this scope
y=cin.nextBigInteger();
^
0_0_28504886_5331.cpp:13:13: error: 'z' was not declared in this scope
z=x.add(y);
^
0_0_28504886_5331.cpp:14:13: error: 'System' was not declared in this scope
System.out.println("Case "+(i+1)+":");
^
0_0_28504886_5331.cpp:14:46: error: invalid operands of types 'const char*' and 'const char [2]' to binary 'operator+'
System.out.println("Case "+(i+1)+":");
^
|