<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 think B. Would be the answer
Answer:
24
Step-by-step explanation:
put 2 over 3 and then simplify it then add the answer with 24
-5 1/3, -2 1/2, 3.75, 4.2 ( this is the order from least to greatest)
Answer:
C = 75.
Step-by-step explanation:
Set up our eq:
600 x
___ = ___
80 100
Cross multiply:
6 x 10 = 60 (add two zero's) = 6000
now, 80 * x. 80x
Now we divide:
6000
_____
80
C = 75