Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Can anyone help me with this? just need to write the code following the comments. JAVA /** * CompareAreas.java * This class creates a circle
Can anyone help me with this? just need to write the code following the comments. JAVA
/** * CompareAreas.java * This class creates a circle and a rectangle and compare their areas. * This class should not contain any calculations but only method calls. * @author Yi * */ public class CompareAreas { public static void main(String[] args) { // TODO Create a Circle object. // TODO Set the radius. // TODO Calculate circle area. // TODO Create an instance of Rectangle class. // TODO Set both width and height of the rectangle. // TODO Calculate rectangle area. // TODO Get area for circle. // TODO Get area for rectangle. // TODO Compare two areas and print out results. } }
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