Syntax
fmod(number,number)
Description
The fmod() Returns the floating point remainder of x/y.
Example
include("math")
println(fmod(4,2))
println(fmod(10.7,5.2))
0
0.299999999999999
fmod(number,number)
The fmod() Returns the floating point remainder of x/y.
include("math")
println(fmod(4,2))
println(fmod(10.7,5.2))
0
0.299999999999999