Answer: 6 and 3 are shown repetitive if you do 9/55 in a calculator
Answer:
$186.2
Step-by-step explanation:
38 kg costs $144.40
∴ 1 kg costs =
= $3.8
49 kg costs = 3.8 x 49
= $186.2
The x-intercept of a graph refers to the points where the graph cuts or intersects the x-axis.
These are the x-values when y is equal to zero.
From the graph provided, the values of x when the graph cuts the x-axis are:

Therefore, the coordinates of the x-intercepts are:

The answer type is "Two points".
Answer:
cost = 56 + 8t, where t is the number of hours worked for.
for 4 hours of work, cost = 56 + 8 x 4 = $88
Step-by-step explanation:
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);