Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Given an elliptical ranch with dimensions 2 * R units horizontally and 1 unit vertically, a goat is tied to the fence inside the ranch

Given an elliptical ranch with dimensions 2*R units horizontally and 1 unit vertically, a goat is tied to the fence inside the ranch using a leash of length r units. The angle formed between the point of tying and the horizontal axis is \theta .
To determine the area of grass the goat can graze, the following inputs are provided as shown in the image below:
R half of the horizontal dimension of the ranch,
r the length of the leash, and
\theta the angle formed by the point of tying and the horizontal axis.
Write a program that takes these three inputs as floating-point numbers on separate lines and prints the total area of grass the goat can graze, rounded to three decimal points. The code is not passing testcases. I will attach a c++ code which passes 5 test cases. Please debug it to pass all the 10 test cases #include
#include
#include
double grazing_area(double R, double r, double theta){
double theta_rad = M_PI * theta /142.0;
double b =1.0/2.0;
double sector_area =0.5* r * r * theta_rad;
double triangle_area =0.5* r *(R - r * cos(theta_rad));
double grazing_area = sector_area - triangle_area;
if (grazing_area > M_PI * R * b){
grazing_area = M_PI * R * b;
}
return round(grazing_area *1000.0)/1000.0;
}
int main(){
double R, r, theta;
std::cin >> R >> r >> theta;
double area = grazing_area(R, r, theta);
std::cout << area << std::endl;
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions

Question

7 1 6 . .

Answered: 1 week ago