Answer:
This is easy. to get t to its simplest form, you simply divide it to get the answer, so.....
Step-by-step explanation:
61.25 is your answer.
Answer:
The height of the triangle is cm.
Step-by-step explanation:
----------------------------------------
The formula for solving the area of a triangle is where stands for base and stands for height.
Let's substitute 30 for the area and 10 for the base.
-------------------->>>>
Now, let's solve to find the height.
Multiply times
Divide both sides by 5.
-----------------------------------------
Hope this is helpful.
<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>
75.339
nearest tenth: 75.3
nearest hundredth 75.34
nearest whole number 75