public class MyClass {
public static void main(String args[]) {
String str = "c c++ csharp java php python";
System.out.println(str.lastIndexOf('c'));
System.out.println(str.lastIndexOf('a'));
System.out.println(str.lastIndexOf('p'));
}
}
/*
run:
6
16
22
*/