Skip to content
Advertisement

why class Circle is not working in Java or I made any mistake, Please answer

I am trying to calculate the area of the circle using class and object in Java, but the output is not as I want. I want an answer as 78.5 but the area = 0.0, why? Here is the code below-

JavaScript

The result I got is-

JavaScript

Advertisement

Answer

You have to understand that the code at the constructor will be run only once when an object is created.

If you have no constructor (like in your example code above) then the code will be run when the program is run. The values of not initialized double values will be 0.0. That’s the problem in your case too. Your area calculation will be translated to area = 3.14 * 0.0 * 0.0. I would suggest following the conventions and best practices this way:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement