Answer:
2
Step-by-step explanation:
It is the only one that makes sense
<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>
I believe you would need to divide 123.75 by 7.50.
The equation would look something like this:
7.50x=123.75
Where x = # of hours worked
123.75 / 7.50 = 16.5
so x = 16.5
You worked for 16.5 hours
Answer:
7x + 15x= 21x
Step-by-step explanation:
7x + 15x
= (7 + 15)x
= 22x