Answer: A
Step-by-step explanation:
Each y value is half of the x value.
Answer:
7
Step-by-step explanation:
5(x - 3) = 2(x + 3) Distribute
5x - 15 = 2x + 6
+ 15 + 15 Switch sides to the liked terms
5x = 2x + 6 + 15
-2x -2x Switch sides to the liked terms
5x - 2x = 6 + 15
<u>3x</u> = 21 Divide
3 3
x = 7
Answer:
y= x/zw
Step-by-step explanation:
Isolate the variable by dividing each side by the factors that dont contain the variable
x = zyw /zw
y=x/zw
<span>#include <iostream>
using namespace std;
class InventoryTag {
public:
InventoryTag();
int getQuantityRemaining() const;
void addInventory(int numItems);
private:
int quantityRemaining;
};
InventoryTag::InventoryTag() {
quantityRemaining = 0;
}
int InventoryTag::getQuantityRemaining() const {
return quantityRemaining;
}
void InventoryTag::addInventory(int numItems) {
if (numItems > 10) {
quantityRemaining = quantityRemaining + numItems;
}
}
int main() {
InventoryTag redSweater;
int sweaterShipment = 0;
int sweaterInventoryBefore = 0;
sweaterInventoryBefore = redSweater.getQuantityRemaining();
sweaterShipment = 25;
cout << "Beginning tests." << endl;
// FIXME add unit test for addInventory
/* Your solution goes here */
cout << "Tests complete." << endl;
return 0;
}</span>
Number 16- 216
number 17- 180
number 18- 252