Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Exercise # 5 :The following formula gives the distance between two points ( x 1 , y 1 ) and ( x 2 , y

Exercise #5:The following formula gives the distance between two points (x1, y1) and (x2, y2) in the Cartesian plane:()+()Given the center and a point on a circle, you can use this formula to find the radius of the circle. Write a program that prompts the user to enter the center and a point on the circle. The program should then output the circles radius, diameter, circumference, and area. Your program must have at least the following methods:a. distance: This method takes as its parameters four numbers that represent two points in the plane and returns the distance between them. Use the formula displayed above.b. radius: This method takes as its parameters four numbers that represent the center and a point on the circle, calls the method distance to find the radius of the circle, and returns the circles radius.c. circumference: This method takes as its parameter a number that represents the radius of the circle and returns the circles circumference. (If r is the radius, the circumference is 2r.)d. area: This method takes as its parameter a number that represents the radius of the circle and returns the circles area. (If r is the radius, the area is r2.)e. Use Math.PI for the circle and circumference calculations.FORMAT THE VALUES WITH 2 DECIMAL PLACES.Sample input / output:Enter the circle's center x and y coordinates: 36Enter the x and y coordinates of a point on the the circle: 48*************Radius =1.00Diameter =2.00Circumference =6.28Area =3.14Submission: Save the project as HW2_EX5

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

Professional Visual Basic 6 Databases

Authors: Charles Williams

1st Edition

1861002025, 978-1861002020

More Books

Students also viewed these Databases questions

Question

1. Television more Over watching faceing of many problems ?

Answered: 1 week ago

Question

Is there a link between chronic stress and memory function?

Answered: 1 week ago

Question

How many Tables Will Base HCMSs typically have? Why?

Answered: 1 week ago

Question

What is the process of normalization?

Answered: 1 week ago