-2 and 5 (just put in a graphing calculator and find the zeros)
Translate that to english please?
Its 0.20 i think bc its the one that make the most since
Answer:
19
Step-by-step explanation:
The boots are the value of 10, since 3 equal 30. The man is the value of 5 since there are two men (10) and one boot (also 10) which made 20. The ribbon is the value of 4 since there is one man (5) and 2 ribbons (8 ) which made 13. add 10, 5 and 4 and you get 19.
<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>