如何在Java

时间:2015-09-18 09:41:19

标签: java string drjava

我用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

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

1 个答案:

答案 0 :(得分:0)

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