Answer:
288 sq feet is my best guess
Step-by-step explanation:
First get like things on the same side:
-5/6b - 1/2b= -2/3 - 3/4
Then find equivalent fractions to make the equation easier to solve.
-5/6b - 3/6b= -8/12 - 9/12
Then just add things together and solve.
-8/6b= -17/12
-8b= 6(-17/12)
-8b= -17/2
b= (-17/2)/-8
b= 17/16
You can then plug the answer back into the original question to make sure it is the correct answer.
The answer is 169 because 180-11=169
<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:
6303
Step-by-step explanation: