find a cost price.
item,. cost price,. profit. ,. loss ,. selling price
radio. ? 154. ---. 1870
please say formula also
Answers
Answer:
Your friend gives you Rs. 100 for a pen that you got for Rs. 90. You sell it to him and then buy a cricket bat from him for Rs. 3000. Later you find out that the bat was worth Rs. 2995. Did you lose money or did you make a profit? When you do a business transaction like selling things if you earn some amount in the transaction that amount is called the profit and if you lose some amount then it is called loss. Let’s compare some quantities with profit and loss.
Answer:
Hii
Step-by-step explanation:
using namespace std;
// Function to calculate cost price with profit
float CPwithProfit(int sellingPrice, int profit)
{
float costPrice;
// required formula to calculate CP with profit
costPrice = (sellingPrice * 100.0) / (100 + profit);
return costPrice;
}
// Function to calculate cost price with loss
float CPwithLoss(int sellingPrice, int loss)
{
float costPrice;
// required formula to calculate CP with loss
costPrice = (sellingPrice * 100.0) / (100 - loss);
SP = 1020;
profit 20
SP = 900;
loss = 10;
SP = 42039;
profit = 8;