The answer is [ 3.1415926535 ]
pi or π is used to find the area and circumference of a circle. You can either solve it in terms of pi or solve with pi being 3.14.
Best of Luck!
Answer:
12mx-15m-20x+25 Hope this helps!
Step-by-step explanation:
Answer:
138.23
Step-by-step explanation:
2πrh+2πr^2=2·π·2·9+2·π·2^2
Answer:
<u>60+14.35=88.27</u>
Step-by-step explanation:
5x12 for the rectangle on the right, then for the circle, using the formula A=πr², I get 28.27, which you divide by 2 because you only need half of the circle, and you get 88.27. I calculated the radius by subtracting 12-6 and then dividing that in half because the radius is half of the distance to the other end of the circle. Then you get the radius of 3, then plug it into the formula to get π(3)², which is just 3.14(9), and you get 28.27.
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);