Here's the code:


public class who{
public static void main(String[] args){
String s = "Who?";
for(int j = s.length() - 1; j >= 0; j--);
System.out.println(s.charAt (j));
}
}