Created
July 2, 2020 02:04
-
-
Save ivanelson/84b8dc594f30455f5b3c86b32e4f6e52 to your computer and use it in GitHub Desktop.
Round ou Truncate
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
let vg_juros = 5.5 | |
out vg_juros | |
out $truncate(vg_juros) | |
if $modulus(vg_juros,2) <> 0 | |
out 'Arredonda: ', ($truncate(vg_juros)+1) | |
endif | |
let vg_juros = 5.4 | |
out vg_juros | |
out $truncate(vg_juros) | |
if $modulus(vg_juros,2) <> 0 | |
out 'Arredonda: ', ($truncate(vg_juros)+1) | |
endif | |
let vg_juros = 5.1 | |
out vg_juros | |
out $truncate(vg_juros) | |
if $modulus(vg_juros,2) <> 0 | |
out 'Arredonda: ', ($truncate(vg_juros)+1) | |
endif | |
let vg_juros = 6.0 | |
out $round(vg_juros) | |
out $truncate(vg_juros) | |
if $modulus(vg_juros,2) <> 0 | |
out 'Arredonda: ', ($truncate(vg_juros)+1) | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment