Answer:
<h2>x = 117°</h2>
Step-by-step explanation:
We know:
The sum of the quadrilateral angles measures 360°.
Therefore we have the equation:

The sum of angles x and D is equal to 360°. Therefore we have the other equation:

From (1) and (2) we have:

To solve the problem shown above, you must follow the proccedure shown below:
1. By definition, Completary angles are those angles whose sum is 90 degrees and Suplementary angles are those angles whose sum is 180 degrees.
2. Keeping the information above on mind, you have:
<span>
(a) An angle measures 43 . What is the measure of its complement?
=90°-43°
=47°
(b) An angle measures 81 . What is the measure of its supplement?
</span>
=180°-81°
=99°
The answers are:
a) 47°
b) 99°
Answer:
Equation: 720=(8x-1)+110+(5x+36)+116+(7x+19)+(6x-2)
x=17
Step-by-step explanation:
A 6 sided polygon is 720° degrees
so
720=(8x-1)+110+(5x+36)+116+(7x+19)+(6x-2)
Simplify
720=(8x+5x+7x+6x)+(−1+110+36+116+19+−2)
Combine like terms:
720=26x+278
flip equation:
26x+278=720
subtract 278 from both sides
26x=442
divide by 26 both sides:
x=17
Hope this helps.
<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>