=P*r*t
=500*4.5%*10
=225
p= 500
r= 4.5%
t= 10
<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:
It would be a profit of .35 cents
Step-by-step explanation:
Answer:
h
Step-by-step explanation:
njk
Answer:
Inequality symbol = ≥
Solution = d≥4
Step-by-step explanation:
If a family drives 350 miles per day, then;
1 day = 350 miles
To determine the number of days they will use to reach at least 1400mles
d days = 1400miles
Divide both expressions
1/d = 350/1400
Cross multiply
350 * d = 1400
350d = 1400
Since we are told that it ia at least 1400miles, this means the total miles can be greater than 1400. Hence the correct inequality sign to use will be a greater than or equal to sign(≥).
The expression above becomes 350d ≥ 1400
Divide both sides by 3350
350d ≥ 1400/350
d≥ 4
Hence the solution that represent the situation is d≥ 4