X= 23 degrees
To find this you first add up 124 and 33 which equals 157. Then you would subtract 157 from 180 because all triangles equal 180.
The y intercept is when x is 0. So, we have to plug in 0 for x. You can do this in many different ways as well.
7(0)-4y=8
-4y=8
Divide both sides by -4.
Y=-2
So, the Y intercept is -2 (0,-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);
Last Choice is the answer