Jump to content
  • 0
Sign in to follow this  
fiction

Calculation with decimals

Question

Hi exist a way to make a calculation in decimal and the result round off?.

 

For example...

 

.@chance1 = (1/(1+10 **(((1580 - 1500)/400))));

.@chance2 = (1/(1+10 **(((1500 - 1580)/400))));

 

.@score1_new = 1500 + 32(1 - .@chance1);

.@score2_new = 1580 + 32(0 - .@chance2);

 

_____

 

.@chance1 = 0.38686317984

.@chance2 = 0.61313682015

.@score1_new = 1519.62037825 round off to 1520

 

Currently all numbers are round off to 0 when decimals exist :[

Share this post


Link to post
Share on other sites

0 answers to this question

Recommended Posts

  • 0

when I want to round values I check if the remainder of the division is greater than 5.
example:

.@calc1 = 237/7;
.@calc1_r = 237%7;	
if(.@calc1_r > 5) .@calc1++;

 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.