modulo(a,p) computes the a modulo p.
Fortran 95 and later
result = modulo(a, p)
a - Shall be a scalar of type integer or realp - Shall be a scalar of the same type and kind as aThe type and kind of the result are those of the arguments.
a and p are of type integer: modulo(a,p) has the value of a - floor (real(a) / real(p)) * p.a and p are of type real: modulo(a,p) has the value of a - floor (a / p) * p.In all cases, if p is zero the result is processor-dependent.
program test_modulo
print *, modulo(17,3) ! yields 2
print *, modulo(17.5,5.5)
print *, modulo(-17,3)
print *, modulo(-17.5,5.5)
print *, modulo(17,-3)
print *, modulo(17.5,-5.5)
end program