例如,我有一台打折的电脑,这台电脑的价格是450美元,打九折,我想知道它的实际价格。
我想在10%以上和10%的钱中学习。Computer 10% off Price = 450$
Computer $10 off Price = 490$
$net_total = 450;
$discount_value = 10; < percent or amount
$gross_price = ?;
我们来解一下方程:
Computer 10% off Price = 450$
Computer $10 off Price = 490$
可以写成(设x
为计算机的初始价格)
x - x * 10 / 100 = 450 # initial price - x without 10 % from x - x * 10% / 100%
x - 10 = 490 # just 10$ off
或
0.9 * x = 450
x = 500
最后
x = 450 / 0.9 = 500
x = 500
从两个方程中我们得到初始计算机的价格是500$
编辑:一般情况下,
如果$discount_value
代表百分之一(即$discount_value = 10
表示10%
折扣),则
$gross_price = $net_total * 100.0 / (100.0 - $discount_value)
如果$discount_value
表示货币(即$discount_value = 10
表示10$
折扣),则
$gross_price = $net_total + $discount_value