Answer:
b
Explanation:
only if there signal is turned on
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Explanation:
a) The total volume equals the sum of the volumes.
500 = x + y
The total octane amount equals the sum of the octane amounts.
89(500) = 87x + 92y
44500 = 87x + 92y
b) desmos.com/calculator/ekegkzllqx
As x increases, y decreases.
c) Use substitution or elimination to solve the system of equations.
44500 = 87x + 92(500−x)
44500 = 87x + 46000 − 92x
5x = 1500
x = 300
y = 200
The required volumes are 300 gallons of 87 gasoline and 200 gallons of 92 gasoline.
Answer:
thanks thanks thanks thanks
Explanation: