Hãy xem xét chúng tôi có giá bán và tỷ lệ lãi hoặc lỗ được đưa ra. Chúng ta phải tìm giá vốn của sản phẩm. Công thức như sau -
$$ Cost \:Price =\ frac {Giá bán * 100} {100 + Phần trăm \:Lợi nhuận} $$
$$ Cost \:Price =\ frac {Giá bán * 100} {100 + phần trăm \:lỗ} $$
Ví dụ
#include<iostream> using namespace std; float priceWhenProfit(int sellPrice, int profit) { return (sellPrice * 100.0) / (100 + profit); } float priceWhenLoss(int sellPrice, int loss) { return (sellPrice * 100.0) / (100 - loss); } int main() { int SP, profit, loss; SP = 1020; profit = 20; cout << "Cost Price When Profit: " << priceWhenProfit(SP, profit) << endl; SP = 900; loss = 10; cout << "Cost Price When loss: " << priceWhenLoss(SP, loss) << endl; }
Đầu ra
Cost Price When Profit: 850 Cost Price When loss: 1000