Create a class called Cirkel. The class shall have a constructor, which takes a parameter (radien). The radius shall be an instance variable. There shall also be to instance methods, one which returns the area and one which returns the circumference. There shall also be a class method for calculating the area of the circle (radius as parameter). After that create a testclass where a circle is created and the circumference is returned and written out. After that shall the area be returned and be written out with help of what is in the class, without creating an object (though invoking the class method).
Hi! I have a problem with this assignment above. Anyone who can help?
Code Java:
Code Java:package cirkel; public class circle { public static void main(String[] args){ Cirkel CirkelObject = new Cirkel(4); CirkelObject.radien(); } }
This is how far i have reached.
Thanks for help in advance :)

