Skip to content

Instantly share code, notes, and snippets.

@ilyaBrandon
Created February 16, 2016 15:15
Show Gist options
  • Save ilyaBrandon/b202db262efad3c110fe to your computer and use it in GitHub Desktop.
Save ilyaBrandon/b202db262efad3c110fe to your computer and use it in GitHub Desktop.
public class Documents {
public static void main(String[] args) {
String drQuote = "my name ilya. im live in kiev. im like computer";
int length = drQuote.length();
char ch = drQuote.charAt(length - 1);
System.out.println(ch);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment