Returns the real remainder after the division of two numbers |
double MathMod( double value, // dividend value double value2 // divisor value );
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello friends,
Hope you are having a nice day.
I want to get the leftover from dividing a double value to another double value:
for example: a=b%c while b=8.5, c=3.0 then a=2.5;
But it looks that % function only accept integers and no doubles.
What is the solution?
Thank you in advance.