i have to use with a method (beginntMitA). somehow it doesn't work without main method. does anyone know how do i fix it?
public class StringTest{
public static void beginntMitA(String args[]){
String s = "java";
char ch1 = s.charAt(0);
char ch2 = s.charAt(1);
char ch3 = s.charAt(2);
char ch4 = s.charAt(3);
char ch5 = s.charAt(4);
System.out.println( ch1 );
System.out.println( ch2 );
System.out.println( ch3 );
System.out.println( ch4 );
System.out.println( ch5 );
}
}