Hi there,
your question is asking for the angle of the central circle, and the formula is: the two arcs' sum divided by 2
So,
(60 + 40) ÷ 2 = 50
The answer is 50°
Hope I helped :p
Answer:
the answer is option D because it cant be division or multiplication and minus does not work
The volume would be, 24.
:)
Expression (non-algebraic): 3+2
An equation: 2x +1 = 21
An inequality: 2x > 2+2
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);