如何在两个输出之间添加空格?

这是我正在使用的代码。

public void displayCustomerInfo() {

System.out.println(Name + Income);

}

我将单独的main方法与此代码一起调用上述方法:

first.displayCustomerInfo();

second.displayCustomerInfo();

third.displayCustomerInfo();

有没有一种方法可以轻松在输出之间添加空格?这是当前的样子:

Jaden100000.0

Angela70000.0

Bob10000.0

回答:

添加文字空间或制表符:

public void displayCustomerInfo() {

System.out.println(Name + " " + Income);

// or a tab

System.out.println(Name + "\t" + Income);

}

以上是 如何在两个输出之间添加空格? 的全部内容, 来源链接: utcz.com/qa/402436.html

回到顶部