Hey there! :D
If 20 is 25% of a number,
we know that it is a quarter of a number.
20*4= 80
20 is 25% of 80.
I hope this helps!
~kaikers
Suppose :
2^x = t ..**&**.. 3^y = u
_____________________________
t + u = 9 × 3 3t + 3u = 27
=====》
2t - 3u = 8 2t - 3u = 8
+ __________
5t = 35
5 × t = 5 × 7
t = 7
&
u = 2
________________________________
Thus :
2^x = 7 ===》 x = Log _ 2 { 7 }
3^y = 2 ===》 y = Log _ 3 { 2 }
<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:hope I ain’t latee
Step-by-step explanation:
250% can be converted into a fraction 250/100 or into a decimal 2.50.
so 250% of 28,000 is 2.50 times 28,000 which is 70,000.
28,000 is increased by 70,000 to 98,000