Write a Java program to create a new string taking first and last characters from two given strings

  • برمجة جافا
  • برمجة

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
Test 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:

P#
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...