Answer:
x=5
Step-by-step explanation:
∠D=∠E (angles opposite to equal sides are equal)
So,
=3x+10
10=
-3x
10=x(x-3)
we know 5×2= 10 & 5-3=2,
So, 10=5×(5-3)
10=5×2
∴x=5
<span>$20/16=$1.25/candy bar
Candy bars cost $1.25 each </span>
I believe the answer is the first one because it’s congruent
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);