fork download
  1. public class Main {
  2. public static void main(String[] args) {
  3. String name = "Fay";
  4. char first = name.charAt(0);
  5. char second = name.charAt(1);
  6. char third = name.charAt(2);
  7.  
  8. System.out.println("First letter: " + first);
  9. System.out.println("Second letter: " + second);
  10. System.out.println("Third letter: " + third);
  11. }
  12. }
  13.  
  14.  
Success #stdin #stdout 0.15s 53612KB
stdin
Standard input is empty
stdout
First letter: F
Second letter: a
Third letter: y