The two numbers are <u>12 and 51.</u>
<h3>
EXPLANATION</h3>
To solve this, I did 63-15, to get 48.
I then divided this by 4, to get the first number, which is <u>12.</u>
To find the second answer, I multiplied 12 by 3, which is 36, and then added the 15 back on, to get <u>51.</u>
<u>51 + 12 = </u><em><u>63</u></em>
<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>
Answer:
tell martha to buy huwei matebook x 2020 , its a good one
Step-by-step explanation: