package lesson_1; public class Frame_32 { public static void main(String[] args) { // последний символ String mjQuote = "I'm failed over and over and over againe in my life and that is why I succeed!"; System.out.println(mjQuote.charAt(mjQuote.length()-1)); } }