Clicky
Showing changes from revision #0 to #1:
(追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)
mod(a,p)
computes the remainder of the division of a
by p
. It is calculated as a - (int(a/p) * p)
.
Fortran 77 and later
Elemental function
result = mod(a, p)
a
- Shall be a scalar of type integer
or real
p
- Shall be a scalar of the same type as a
and not equal to zeroThe kind of the return value is the result of cross-promoting the kinds of the arguments.
program test_mod
print *, mod(17,3)
print *, mod(17.5,5.5)
print *, mod(17.5d0,5.5)
print *, mod(17.5,5.5d0)
print *, mod(-17,3)
print *, mod(-17.5,5.5)
print *, mod(-17.5d0,5.5)
print *, mod(-17.5,5.5d0)
print *, mod(17,-3)
print *, mod(17.5,-5.5)
print *, mod(17.5d0,-5.5)
print *, mod(17.5,-5.5d0)
end program test_mod