C++ ASSIGNMENT: Area of a Circle The following formula gives the distance betwee
ID: 3704911 • Letter: C
Question
C++ ASSIGNMENT: Area of a Circle
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 the 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 circle’s radius, diameter, circumference, and area. Your program must have at least the following functions:
calculateRadius: Receives the x-y coordinates of the center and point on the circle (as input by the user) and calculates the distance between the points. This value is returned as the radius of the circle.
calculateArea: Receives the radius of a circle, calculates and returns the area of the circle.
calculatePerimeter: Receives the radius of a circle, calculates and returns the perimeter of the circle.
The output should clearly display the radius, area, and perimeter of the resulting circle.
(x2 - ri)2 + (2 -n)2Explanation / Answer
#include <iostream>
#include <cmath>
using namespace std;
double calculateRadius(int x, int y) {
return sqrt(x*x + y * y);
}
double calculateArea(double r) {
return 3.14 * r * r;
}
double calculatePerimeter(double r) {
return 2 * 3.14 * r;
}
int main()
{
int x, y;
cout<<"Enter the x and y co-ordinates: "<<endl;
cin >> x>>y;
double radius = calculateRadius(x,y);
cout<<"Radius: "<<radius<<endl;
cout<<"Area: "<<calculateArea(radius)<<endl;
cout<<"Perimeter: "<<calculatePerimeter(radius)<<endl;
return 0;
}
Output:
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.