0_0_30683645_17349.cpp:1:1: error: 'import' does not name a type
import java.util.*;
^
0_0_30683645_17349.cpp:3:9: error: expected ':' before 'static'
public static void main(String []args){
^
0_0_30683645_17349.cpp:3:26: error: 'String' has not been declared
public static void main(String []args){
^
0_0_30683645_17349.cpp:3:35: error: expected ',' or '...' before 'args'
public static void main(String []args){
^
0_0_30683645_17349.cpp:18:1: error: expected '}' at end of input
}
^
0_0_30683645_17349.cpp: In static member function 'static void Main::main(int*)':
0_0_30683645_17349.cpp:4:3: error: 'Scanner' was not declared in this scope
Scanner sc=new Scanner(System.in);
^
0_0_30683645_17349.cpp:5:9: error: 'sc' was not declared in this scope
int n=sc.nextInt();
^
0_0_30683645_17349.cpp:8:4: error: 'String' was not declared in this scope
String str=sc.nextLine();
^
0_0_30683645_17349.cpp:10:18: error: 'str' was not declared in this scope
for(int i=0;i<str.length();i+){
^
0_0_30683645_17349.cpp:10:33: error: expected primary-expression before ')' token
for(int i=0;i<str.length();i+){
^
0_0_30683645_17349.cpp:11:8: error: 'Character' was not declared in this scope
if(Character.isDigit(str.charAt(i))){
^
0_0_30683645_17349.cpp:15:4: error: 'System' was not declared in this scope
System.out.println(numb);
^
0_0_30683645_17349.cpp: At global scope:
0_0_30683645_17349.cpp:18:1: error: expected unqualified-id at end of input
}
^
|