Answer:
i saed to answer it and it didnt show me the image so im conf
Step-by-step explanation:
so probably they are, unlees one is acxute and the other is obtuse then.... ur on ur own buddy,
<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:
B. 50 degrees
Step-by-step explanation:
I am not 100% sure and if this is a right triangle, then it's measure is 90 degrees. So, 140 degrees minus 90 degrees would total, 50 degrees.
Answer:
see explanation
Step-by-step explanation:
∠1 = 58° ( alternate angles )
∠1 and ∠2 form a straight angle and are supplementary, thus
∠2 = 180° - 58° = 122°