Write a Java program to create a new string taking first and last characters from two given strings. If the length of either string is 0 use "#" for missing characterTest Data: str1 = "Python"str2 = " "Sample Output:
P#
import java.lang.*; public class Exercise73 { public static void main(String[] args) { String str1 = "Python"; String str2 = ""; int length2 = str2.length(); String result = ""; result += (str1.length() >= 1) ? str1.charAt(0) : '#'; result += (length2 >= 1) ? str2.charAt(length2-1) : '#'; System.out.println(result); } }
Sample Output:
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer