Raum in Java
System.out.println("Str1" + "\t" + "Str2");
abdullah
System.out.println("Str1" + "\t" + "Str2");
public void displayCustomerInfo() {
System.out.println(Name + " " + Income);
// or a tab
System.out.println(Name + "\t" + Income);
}