พิจารณาว่าเรามีราคาขายและให้เปอร์เซ็นต์ของกำไรหรือขาดทุน เราต้องหาราคาต้นทุนของผลิตภัณฑ์ สูตรจะเป็นดังนี้ −
$$Cost Price=\frac{Sell Price∗100}{100+percentage profit}$$ $$Cost Price=\frac{Sell Price∗100}{101}{100+percentage loss}$$
ตัวอย่าง
#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;
} ผลลัพธ์
Cost Price When Profit: 850 Cost Price When loss: 1000