Answer:
48
Step-by-step explanation:
80 divided by 4 is 20 so thats 1/4 of 80
80-20=60
1/5 of 60 = 12
20+12=32
80-32=48
Answer:
Jamal's age = 2×x+12= 2x+12
sum og ages = 45
2x+12+x= 45
=3x+12=45
=45-12= 3x
= 32=3x
x= 32/3= 10.67
2x+13 =21.34+12= 33.34
hope.ot helps
plz mark as brainliest
<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>
Y=180-111=69
x=360-123-70-69=98
That's your answer.