Add up all the numbers & divide by the number of numbers. That should give you the mean.
<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>
This figure is what we would call a composite figure. A composite figure is a shape that is made up of multiple other shapes. when looking at the pond and the border that surrounds it, we can see that this heart shape is made up of two semi circles and a square. To find the area of the border, we will use the area formulas for semi circles and for squares:
Semi Circle Area Formula:

÷
2
Square Area Formula: length x width
Pi = 3.14
Radius = Half of the diameter, in this case 6
After finding the area of each shape, we can subtract the 2 ft width to find the area of the flower bed border.
I need to see the function In order to do this
0 solutions
move the x to one side, and the numbers to the other.
12x (-12x) + 32 (-32)= 12 (-12x) - 7 (-32)
12x - 12x = -7 - 32
0 = -39
0 ≠ -39
∴ you have 0 solutions
hope this helps