Answered step by step
Verified Expert Solution
Question
1 Approved Answer
help me with this java problem. thanks Problem Description: Define the Circle2D class that contains: Two double data fields named x and y that specify
help me with this java problem. thanks
Problem Description: Define the Circle2D class that contains: Two double data fields named x and y that specify the center of the circle with methods . A data field radius with a get method . A no-arg constructor that creates a default circle with 0, . A constructor that creates a circle with the specified x, . A method getAreal that returns the area of the circle 0) for (x, ) and 1 for radius and radius . A method getperimeter that returns the perimeter of the circle .A method the specified point (x, y) is inside this circle. See Figure 10.14 (a) A method contains (Circle2D circle) that returns true if the specified circle is inside this circle. See Figure 1o.14 (b) . A method overlaps (Circle2D circle) that returns true if the specified circle overlaps with this circle. See the figure below Figure (a) A point is inside the circle. (b) A Circle is inside another circle. (c) A circle overlaps another circle. Draw the UML diagram for the class. Implement the class. Write a test program that creates a ircle2D object cl (new Circle2D (2, 2, 5.5)), displays its area and perimeter, and displays the result of cl.contains (3. 3, ci.contains (new circle2 D (4, 5, 10.5)), and cloverlaps (new circle2D( 2.3)1 Design: Draw the UML class diagram here Circle2D Coding: public class Exercise10 11 public static void main (String[ args) circle2D clnew Circle2D (2, 2, 5.5) System.out.println("Area is "c1.getArea0) System.out.println("Perimeter is " ci.getPerimeter ) System.out.println(cl.contains (3, 3)) System.out.println(c1.contains (new Circle2D44, 5, 10.5))) System.out.println(cl.overlaps (new Circle2DI3. 5, 2.3) :Js:-Peria ils,i1f3. ':: 2.3)1)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started