The smallest value it could be is 4 and the largest value it could be is 10.
The triangle inequality theorem states that any two sides of a triangle must have a sum greater than the third side. Given the two sides we have, 7 and 4, the sum would be 11; this would mean that the missing side could be no more than 10.
If we take the unknown side and the smallest one we're given, we would have the inequality
n+4>7
Subtracting 4 from both sides we would have n>3. That means it would have to be the next integer up, which would be 4.
As the width gets larger so does the total area
You cannot answer this question without a picture.
<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>
Choose the three shapes that have and Area of 36 square centimeters
Step-by-step explanation: