0_0_13337515_4373.cpp:1:1: error: 'import' does not name a type
import java.util.Scanner;
^
0_0_13337515_4373.cpp:4:9: error: expected ':' before 'static'
public static void main(String[] args)
^
0_0_13337515_4373.cpp:4:26: error: 'String' has not been declared
public static void main(String[] args)
^
0_0_13337515_4373.cpp:4:35: error: expected ',' or '...' before 'args'
public static void main(String[] args)
^
0_0_13337515_4373.cpp:11:1: error: expected ';' after class definition
}
^
0_0_13337515_4373.cpp: In static member function 'static void Main::main(int*)':
0_0_13337515_4373.cpp:6:3: error: 'Scanner' was not declared in this scope
Scanner s=new Scanner(System.in);
^
0_0_13337515_4373.cpp:7:9: error: 's' was not declared in this scope
int a=s.nextInt(),b=s.nextInt();
^
0_0_13337515_4373.cpp:9:3: error: 'System' was not declared in this scope
System.out.print(a+b);
^
0_0_13337515_4373.cpp:9:22: error: 'b' was not declared in this scope
System.out.print(a+b);
^
|