Answers for "Write code to take a String input from the user, then print the first and last letters of the string on one line."

11

check last character of string java

String str = "India";
System.out.println("last char = " + str.charAt(str.length() - 1));
Posted by: Guest on March-23-2020

Code answers related to "Write code to take a String input from the user, then print the first and last letters of the string on one line."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language