I have written a code in Java to compute the area and circumference of a circle. When I want to print the output, I can not do the following:
"The area of a circle with a radius of" +radius "is" +area
Instead, it prints like:
"The area of a circle with a radius of" +radius
"is" +area
Thank you in advance for possible solutions.
"The area of a circle with a radius of" + radius + "is" + area