从给定的销售价格和C ++中的损益百分比中查找成本价
考虑我们有售价,并给出了损益的百分比。我们必须找到产品的成本价。公式如下-
$$Cost\:价格=\frac{卖出价格*100}{100+百分比\:利润}$$
$$Cost\:价格=\frac{卖出价格*100}{100+百分比\:亏损}$$
示例
#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
热门推荐
10 新人红包祝福语简短精辟
11 幼师给毕业祝福语简短
12 生日高考祝福语妹妹简短
13 下飞机祝福语简短英文
14 元宵发客户祝福语简短
15 爸妈金婚文案祝福语简短
16 新郎朋友红包祝福语简短
17 虎年五一祝福语大全简短
18 出阁宴祝福语姐姐简短