0_0_34176824_7301.cpp:1:1: error: 'import' does not name a type
import java.math.BigInteger;
^
0_0_34176824_7301.cpp:2:1: error: 'import' does not name a type
import java.util.Scanner;
^
0_0_34176824_7301.cpp:5:9: error: expected ':' before 'static'
public static void main(String[] args) {
^
0_0_34176824_7301.cpp:5:26: error: 'String' has not been declared
public static void main(String[] args) {
^
0_0_34176824_7301.cpp:5:35: error: expected ',' or '...' before 'args'
public static void main(String[] args) {
^
0_0_34176824_7301.cpp:20:1: error: expected ';' after class definition
}
^
0_0_34176824_7301.cpp: In static member function 'static void Main::main(int*)':
0_0_34176824_7301.cpp:6:3: error: 'Scanner' was not declared in this scope
Scanner input = new Scanner(System.in);
^
0_0_34176824_7301.cpp:7:11: error: 'input' was not declared in this scope
int n = input.nextInt();
^
0_0_34176824_7301.cpp:10:4: error: 'BigInteger' was not declared in this scope
BigInteger a, b, c;
^
0_0_34176824_7301.cpp:11:4: error: 'a' was not declared in this scope
a = input.nextBigInteger();
^
0_0_34176824_7301.cpp:12:4: error: 'b' was not declared in this scope
b = input.nextBigInteger();
^
0_0_34176824_7301.cpp:13:4: error: 'c' was not declared in this scope
c = a.add(b);
^
0_0_34176824_7301.cpp:14:4: error: 'System' was not declared in this scope
System.out.println("Case "+ (i + 1) + ":");
^
0_0_34176824_7301.cpp:14:42: error: invalid operands of types 'const char*' and 'const char [2]' to binary 'operator+'
System.out.println("Case "+ (i + 1) + ":");
^
|