如何在 Java 中的同一行上写 2 个字符串

How to write 2 strings on same line in Java

我在Java中写了一段代码来计算圆的面积和周长。当我想打印输出时,我无法执行以下操作:

"The area of a circle with a radius of" +radius "is" +area

相反,它打印如下:

"The area of a circle with a radius of" +radius
"is" +area

提前感谢您提供可能的解决方案。

"The area of a circle with a radius of" + radius + "is" + area