Answer:
Step-by-step explanation:
1/2b + 2 ≤ 8
b ≤ 12
First, find the area of the shelf if it were a full circle.
the formula for the area of a circle is a=pi(r squared)
a=pi (10.5 squared)
a=pi x 110.25
a=3.14 x 110.25
a=346.185
now, you have to divide that area by 4 to get the area of the 1/4 circle
346.185/4=86.55
Vertical angles are equal
-3x + 58 = x - 2
-3x - x = -2 - 58
-4x = - 60
x = -60/-4
x = 15
m < D = x - 2....15 - 2 = 13 <====
m < C = -3x + 58....-3(15) + 58 = 13
267 x 0.02 = 5.34
267 + 5.34 = 272.34
267 x 0.08 = 21.36
267 - 21.36 = 245.64
267 + 272.34 + 245.64 = $784.98
Hello,
function minmax(int p1,int p2,int p3, int adr_big, int adr_small)
{ int mini=p1,maxi=p1;
if (p1>p2) {mini=p2;}
else {maxi=p2;};
if (p3>maxi) maxi=p3;
if (p3<mini) mini=p3;
*adr_big=maxi;
*adr_small=mini;
};
// main
int a=31,b=5,c=19,big,small;
minmax(a,b,c,&big,&small);