标签: java math percentage
我会尽量简单:
我们假设我有一个Integer discount和一个long price。
Integer discount
long price
有没有有效的方法可以手动执行此操作?
是否有任何Java实用程序(例如在Math包中)计算price之后的discount?
Math
price
discount
答案 0 :(得分:2)
真的,你需要一个库函数吗?
自己做一些数学。
discountedPrice = price - (discount * price) / 100.0