本文介绍了减去折扣后如何获得实际值(%)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在最终金额和折扣率的帮助下获得总金额.
I want to get the total amount with the help of Final amount and Discount rate.
例如.
总计= 100
折扣= 15%
最终金额= 100 * .15 = 85
Final Amount =100*.15=85
如果我只有两个变量
最终金额= 85
折扣= 15%
总计=?
现在我可以借助最终金额"和折扣率"取回总计吗?
Now I can get back Grand total with the help of "Final Amount" and "Discount rate"?
推荐答案
让总计= X
X-(X * 15%)= 85 那么如果您找到X的值,那么您的总计就可以找到.
X-(X * 15 %) = 85 then if you find the value of X then your Grand total can e found.
X-3X/20 = 85
X - 3X/20 = 85
17X = 85 * 20
17X= 85*20
X =(85/17)* 20
X = (85/17)*20
X = 100
将其放置..您会发现总计
Put it .. You will find the Grand Total
这篇关于减去折扣后如何获得实际值(%)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!