Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

method named area with one double parameter named radius The method needs to return a double value that represents the area of a circle If

method named area with one double parameter named radius

The method needs to return a double value that represents the area of a circle

If the parameter radius is negative then return -1.0 represent an invalid value

overloaded method method with 2 parameters x and y (both double). where x and y represent the sides of rectangles

The method needs to return an area of rectangle

if either or both parameters is/are a negative return -1.0 indicate an invalid value

for formulas and Pi value

Examples

area(5.0); should return 78.53975

area(-1); should return -1 since the parameter is negative

area(5.0,4.0); should return 20.0 (5*4-20)

area(-1.0,4.0); should return -1 since the first the parameter is negative

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

Step: 3

blur-text-image

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

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions