Answer:
C = 125S + $3750
Step-by-step explanation:
$ 3750 = truck rental; $125 per ton of sugar transported. C is the cost; S is the number of tons transported. The equation relating C to S would be a linear equation like y = mx + b. This equation would be graphed in the first quadrant only. You would start with your y-intercept at (0, 3750). As x increases by 1, your y increases by 125 yielding these points:
(1, 3875) (2, 4000) (3, 4125) etc.
This shows that for each increase by one ton of sugar, the cost goes up $125
Answer:
i need more info
Step-by-step explanation:
Answer:
Algorithm
Start
Int n // To represent the number of array
Input n
Int countsearch = 0
float search
Float [] numbers // To represent an array of non decreasing number
// Input array elements but first Initialise a counter element
Int count = 0, digit
Do
// Check if element to be inserted is the first element
If(count == 0) Then
Input numbers[count]
Else
lbl: Input digit
If(digit > numbers[count-1]) then
numbers[count] = digit
Else
Output "Number must be greater than the previous number"
Goto lbl
Endif
Endif
count = count + 1
While(count<n)
count = 0
// Input element to count
input search
// Begin searching and counting
Do
if(numbers [count] == search)
countsearch = countsearch+1;
End if
While (count < n)
Output count
Program to illustrate the above
// Written in C++
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main()
{
// Variable declaration
float [] numbers;
int n, count;
float num, searchdigit;
cout<<"Number of array elements: ";
cin>> n;
// Enter array element
for(int I = 0; I<n;I++)
{
if(I == 0)
{
cin>>numbers [0]
}
else
{
lbl: cin>>num;
if(num >= numbers [I])
{
numbers [I] = num;
}
else
{
goto lbl;
}
}
// Search for a particular number
int search;
cin>>searchdigit;
for(int I = 0; I<n; I++)
{
if(numbers[I] == searchdigit
search++
}
}
// Print result
cout<<search;
return 0;
}
Answer:
-2x + 6
Step-by-step explanation:
Step 1: Write expression
3(x + 2) - 5x
Step 2: Distribute
3x + 6 - 5x
Step 3: Combine like terms
-2x + 6
B) 1/7 because no matter how many times you spin the odds are always 1 out of all 7 of the colors