0_0_25128654_3266.cpp:1:1: error: 'import' does not name a type
import java.util.*;
^
0_0_25128654_3266.cpp:3:10: error: expected ':' before 'static'
public static void main(String args[]){
^
0_0_25128654_3266.cpp:3:27: error: 'String' has not been declared
public static void main(String args[]){
^
0_0_25128654_3266.cpp:19:10: error: expected ':' before 'static'
public static int[] z(char []a){
^
0_0_25128654_3266.cpp:19:20: error: expected unqualified-id before '[' token
public static int[] z(char []a){
^
0_0_25128654_3266.cpp:26:1: error: expected '}' at end of input
}
^
0_0_25128654_3266.cpp: In static member function 'static void Main::main(int*)':
0_0_25128654_3266.cpp:4:5: error: 'Scanner' was not declared in this scope
Scanner sc= new Scanner(System.in);
^
0_0_25128654_3266.cpp:5:11: error: 'sc' was not declared in this scope
while(sc.hasNext()){
^
0_0_25128654_3266.cpp:6:7: error: 'String' was not declared in this scope
String str=sc.next();
^
0_0_25128654_3266.cpp:7:12: error: expected unqualified-id before '[' token
char [] a=str.toCharArray();int b;
^
0_0_25128654_3266.cpp:8:11: error: expected unqualified-id before '[' token
int [] c=z(a);
^
0_0_25128654_3266.cpp:9:7: error: 'Arrays' was not declared in this scope
Arrays.sort(c);
^
0_0_25128654_3266.cpp:9:19: error: 'c' was not declared in this scope
Arrays.sort(c);
^
0_0_25128654_3266.cpp:12:11: error: 'System' was not declared in this scope
System.out.print((char)c[i]+" ");
^
0_0_25128654_3266.cpp:14:11: error: 'System' was not declared in this scope
System.out.println((char)c[i]);
^
0_0_25128654_3266.cpp: At global scope:
0_0_25128654_3266.cpp:18:3: error: expected unqualified-id at end of input
}
^
|