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