0_0_14981068_25087.cpp:1:1: error: 'import' does not name a type
import java.util.Scanner;
^
0_0_14981068_25087.cpp:3:11: error: expected ':' before 'static'
public static void main(String args[]){
^
0_0_14981068_25087.cpp:3:28: error: 'String' has not been declared
public static void main(String args[]){
^
0_0_14981068_25087.cpp:14:3: error: expected ';' after class definition
}
^
0_0_14981068_25087.cpp: In static member function 'static void Main::main(int*)':
0_0_14981068_25087.cpp:4:5: error: 'Scanner' was not declared in this scope
Scanner s=new Scanner(System.in);
^
0_0_14981068_25087.cpp:5:11: error: 's' was not declared in this scope
while(s.hasNext()){
^
0_0_14981068_25087.cpp:10:5: error: 'System' was not declared in this scope
System.out.println(sum);
^
|