Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Copy the file Geometry.java (Code Listing 5.1) from the Student Files or as directed by your instructor. This program will compile, but, when you

image text in transcribedimage text in transcribedimage text in transcribed

1. Copy the file Geometry.java (Code Listing 5.1) from the Student Files or as directed by your instructor. This program will compile, but, when you run it, it doesn't appear to do anything except wait. That is because it is waiting for user input, but the user doesn't have the menu to choose from yet. We will need to create this. 2. Below the main method, but in the Geometry class, create a static method called printmenu that has no parameter list and does not return a value. It will simply print out instructions for the user with a menu of options for the user to choose from. The menu should appear to the user as: This is a geometry calculator Choose what you would like to calculate 1. Find the area of a circle 2. Find the area of a rectangle 3. Find the area of a triangle 4. Find the circumference of a circle 5. Find the perimeter of a rectangle 6. Find the perimeter of a triangle Enter the number of your choice: 3. Add a line in the main method that calls the printMenu method as indicated by the comments. 4. Compile, debug, and run. You should be able to choose any option, but you will always get 0 for the answer. We will fix this in the next task. Task \#2 Value-Returning Methods 1. Write a static method called circleArea that takes in the radius of the circle and returns the area using the formula A=r2. 2. Write a static method called rectangleArea that takes in the length and width of the rectangle and returns the area using the formula A=lw. 3. Write a static method called triangleArea that takes in the base and height of the triangle and returns the area using the formula A=1/2bh. 4. Write a static method called circlecircumference that takes in the radius of the circle and returns the circumference using the formula C=2r. 5. Write a static method called rectanglePerimeter that takes in the length and the width of the rectangle and returns the perimeter of the rectangle using the formula P=2l+2w. 6. Write a static method called trianglePerimeter that takes in the lengths of the three sides of the triangle and returns the perimeter of the triangle which is calculated by adding up the three sides. Task \#3 Calling Methods 1. Add lines in the main method in the GeometryDemo class which will call these methods. The comments indicate where to place the method calls. 2. Below, write some sample data and hand calculated results for you to test all 6 menu items. 3. Compile, debug, and run. Test out the program using your sample data. Task \#4 Java Documentation 1. Write javadoc comments for each of the 7 static methods you just wrote. They should include: a. A one line summary of what the method does. b. A description of what the program requires to operate and what the result of that operation is. c. @param listing and describing each of the parameters in the parameter list (if any). d. areturn describing the information that is returned to the calling statement (if any). 2. Generate the documentation. Check the method summary and the method details to ensure your comments were put into the Java Documentation correctly. Code Listing 5.1 (Geometry. java) import java.util. Scanner; / This program demonstrates static methods */ public class Geometry \{ public static void main (String[] args) \{ int choice; // The user's choice double value =0;// The method's return value char letter; // The user's Y or N decision double radius; // The radius of the circle double length; // The length of the rectangle double width; // The width of the rectangle double height; // The height of the triangle double base; // The base of the triangle double side1; // The first side of the triangle double side2; // The second side of the triangle double side3; // The third side of the triangle I/ Create a scanner object to read from the keyboard Scanner keyboard = new Scanner (System.in); I/ The do loop allows the menu to be displayed first do \{ // TASK \#1 Call the printMenu method choice = keyboard. nextint ()

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Big Data Fundamentals Concepts, Drivers & Techniques

Authors: Thomas Erl, Wajid Khattak, Paul Buhler

1st Edition

0134291204, 9780134291208

Students also viewed these Databases questions