0_0_17244940_19485.cpp:1:1: error: 'import' does not name a type
import java.math.*;
^
0_0_17244940_19485.cpp:2:1: error: 'import' does not name a type
import java.io.*;
^
0_0_17244940_19485.cpp:3:1: error: 'import' does not name a type
import java.util.*;
^
0_0_17244940_19485.cpp:6:10: error: expected ':' before 'static'
public static void main(String argv[]){
^
0_0_17244940_19485.cpp:6:27: error: 'String' has not been declared
public static void main(String argv[]){
^
0_0_17244940_19485.cpp:33:2: error: expected ';' after class definition
}
^
0_0_17244940_19485.cpp: In static member function 'static void Main::main(int*)':
0_0_17244940_19485.cpp:8:4: error: 'Scanner' was not declared in this scope
Scanner cin = new Scanner(System.in);
^
0_0_17244940_19485.cpp:9:8: error: 'cin' was not declared in this scope
T = cin.nextInt();
^
0_0_17244940_19485.cpp:11:5: error: 'BigInteger' was not declared in this scope
BigInteger x,k,c;
^
0_0_17244940_19485.cpp:13:5: error: 'x' was not declared in this scope
x = cin.nextBigInteger();
^
0_0_17244940_19485.cpp:15:5: error: 'k' was not declared in this scope
k = cin.nextBigInteger();
^
0_0_17244940_19485.cpp:16:5: error: 'c' was not declared in this scope
c = cin.nextBigInteger();
^
0_0_17244940_19485.cpp:17:16: error: expected ';' before 'sum'
BigInteger sum = x;
^
0_0_17244940_19485.cpp:20:5: error: 'sum' was not declared in this scope
sum = sum.multiply(BigInteger.TEN);
^
0_0_17244940_19485.cpp:24:5: error: 'System' was not declared in this scope
System.out.println("Case #"+i+":");
^
0_0_17244940_19485.cpp:24:35: error: invalid operands of types 'const char*' and 'const char [2]' to binary 'operator+'
System.out.println("Case #"+i+":");
^
0_0_17244940_19485.cpp:25:8: error: 'sum' was not declared in this scope
if(sum.equals(c))
^
|