Answer to Question #263179 in Java | JSP | JSF for Marwa

Question #263179

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 character.


1
Expert's answer
2021-11-10T03:01:26-0500
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);
 }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS