Simple...
you have: C(X)=3x+2.00
x=number of minutes
Pay attention to the y=mx+b form where m=slope-->>
3x is the slope...
so it's 3(times the number of minutes) <<---or (x)
This means that the slope is 3, or the fancy way of saying it-->>"rate of change."
The rate of change of the cost of the taxi ride is $3.00 per minute.
Thus, your answer.
Answer: She will be able to fill 5
Step-by-step explanation:
Answer:119.3
Step-by-step explanation:
9.5*6=57
8.9*7=62.3
57+62.3=119.3
Answer:
x=20[vertically opposite angle are equal]
Answer:
Step-by-step explanation:
#include <stdio.h>
int main()
{
int num1, num2, flag_var, i, j;
/* Ask user to input the from/to range
* like 1 to 100, 10 to 1000 etc.
*/
printf("Enter two range(input integer numbers only):");
//Store the range in variables using scanf
scanf("%d %d", &num1, &num2);
//Display prime numbers for input range
printf("Prime numbers from %d and %d are:\n", num1, num2);
for(i=num1+1; i<num2; ++i)
{
flag_var=0;
for(j=2; j<=i/2; ++j)
{
if(i%j==0)
{
flag_var=1;
break;
}
}
if(flag_var==0)
printf("%d\n",i);
}
return 0;
}