Created
January 14, 2020 13:42
-
-
Save kayr/e92a8f488d04180359c9b24f941fc800 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def bal = 994000.0 | |
def wc = 1.0 | |
def mb = -5000 | |
def maxW = (bal - mb) / ((wc / 100) + 1) | |
println("MaxWithDraw [$maxW]" + | |
" ChargeAmount[${(wc / 100 * maxW)}]" + | |
" BalaceMinusWithdraw [${bal - maxW - wc / 100 * maxW}]") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment