Using the starter code below, write a program that asks a user for two points (x1, y1) and (x2, y2), then compute: area of the circle for which (x1, y1) is the center and (x2, y2) is on the circle's perimeter. The program should define use 3 functions: • distance(x1, y1, x2, y2): computes and returns the distance between two points • area(r): computes and returns the area of a circle with radius r • main(): asks user for input, calls the other functions, and prints the answer. The input and output of the program should look similar to this: X for center point: 0 Y for center point: 0 X for perimeter point: 1 Y for perimeter point: 1 Area of circle centered at (0.0, 0.0) with radius 1.414213 is 6.283185. Hint1: Area of a circle = n? Hint2: Distance between 2 points = sqrt(x2- x1)2 + (Y2 - y1)²) Starter code: import math def distance(x1, y1, x2, y2): #Add code to compute and return distance between (x1, y1) and (x2, y2) def area(r): #Add code to compute and return area of circle with radius r def main(): #Add code to get (x, y) for center point, (x, y) for perimeter point, use above functions to calculate radius and area of circle, #3 # and print the result as indicated in the instructions

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Using the starter code below, write a program that asks a user for two points (x1, y1) and (x2, y2), then computes the
area of the circle for which (x1, y1) is the center and (x2, y2) is on the circle's perimeter. The program should define and
use 3 functions:
distance(x1, y1, x2, y2): computes and returns the distance between two points
• area(r): computes and returns the area of a circle with radius r
• main(): asks user for input, calls the other functions, and prints the answer.
The input and output of the program should look similar to this:
X for center point: 0
Y for center point: 0
X for perimeter point: 1
Y for perimeter point: 1
Area of circle centered at (0.0, 0.0) with radius 1.414213 is 6.283185.
Hint 1: Area of a circle = n?
Hint2: Distance between 2 points = sqrt(x2-X12 + (Y2 - Y1)²)
Starter code:
import math
def distance(x1, y1, x2, y2):
#Add code to compute and return distance between (x1, y1) and (x2, y2)
def area(r):
#Add code to compute and return area of circle with radius r
def main():
#Add code to get (x, y) for center point, (x, y) for perimeter point,
23
use above functions to calculate radius and area of circle,
# and print the result as indicated in the instructions.
Transcribed Image Text:Using the starter code below, write a program that asks a user for two points (x1, y1) and (x2, y2), then computes the area of the circle for which (x1, y1) is the center and (x2, y2) is on the circle's perimeter. The program should define and use 3 functions: distance(x1, y1, x2, y2): computes and returns the distance between two points • area(r): computes and returns the area of a circle with radius r • main(): asks user for input, calls the other functions, and prints the answer. The input and output of the program should look similar to this: X for center point: 0 Y for center point: 0 X for perimeter point: 1 Y for perimeter point: 1 Area of circle centered at (0.0, 0.0) with radius 1.414213 is 6.283185. Hint 1: Area of a circle = n? Hint2: Distance between 2 points = sqrt(x2-X12 + (Y2 - Y1)²) Starter code: import math def distance(x1, y1, x2, y2): #Add code to compute and return distance between (x1, y1) and (x2, y2) def area(r): #Add code to compute and return area of circle with radius r def main(): #Add code to get (x, y) for center point, (x, y) for perimeter point, 23 use above functions to calculate radius and area of circle, # and print the result as indicated in the instructions.
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY