Skip to content

Instantly share code, notes, and snippets.

@ivanelson
Created July 2, 2020 02:04
Show Gist options
  • Save ivanelson/84b8dc594f30455f5b3c86b32e4f6e52 to your computer and use it in GitHub Desktop.
Save ivanelson/84b8dc594f30455f5b3c86b32e4f6e52 to your computer and use it in GitHub Desktop.
Round ou Truncate
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