我用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
提前感谢您寻求可能的解决方案。
答案 0 :(得分:0)
"The area of a circle with a radius of" + radius + "is" + area