Answer:
-5
Step-by-step explanation:
the slope is the variable in front of the x
Answer:
correct
Step-by-step explanation:
4 times 7 is 28
Answer:
What is this for?
Step-by-step explanation:
Answer: I got you if its not to late the answer is 2,3
Step-by-step explanation
anything above 2 is meaningful so first you would subtract 21.9 28.1 to get 3.7 its above 2 so that's one do the same for the rest anything above 2 is your answer or right at two really hope this helps
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);