Write a Java program to create the concatenation of the two strings except removing the first character of each string
- برمجة جافا
- برمجة
- 2021-05-01
- razanmazen8711884270
الأجوبة
import java.lang.*;
public class Exercise71 {
public static void main(String[] args)
{
String str1 = "Python";
String str2 = "Tutorial";
System.out.println(str1.substring(1) + str2.substring(1));
}
}
Sample Output:
ythonutorial
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال