It's suppose to add 450mph+250mph=700 then divide 3 hours=233.3
Answer:
{ 1,2,3,4,5,6}
Step-by-step explanation:
Your 2nd option is the correct answer because 7 goes into both.
Answer:
these two isn't a function
Step-by-step explanation:
On the table you can see that the ratio isn't equivalent
On the chart you can see that one domain has two ranges which also tells us that this two isn't a function
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);