某些运算符的优先级高于其他运算符; 例如,乘法运算符的优先级高于加法运算符。 例如,x = 7 + 3 * 2; 这里,x被赋值为13,而不是20,因为operator *的优先级高于+,所以它首先乘以3 * 2然后加到7中。 此处,具有最高优先级的运算符显示在表的顶部,具有最低优先级的运算符显示在底部。 在表达式中,将首先评...
Numeric functions abs, modulo Mathematical functions acos, log Character functions achar, index Character inquiry function len Kind functions kind Logical function logical Numeric inquiry functions digits, tiny Bit inquiry function bit_size Bit manipulation functions btest, ior Transfer function transfer Flo...
(4,8) Name int logical max min mod modulo nint real sign Argument Datatypes integer, real(2,4,8), complex logical integer, real(2,4,8) integer, real(2,4,8) integer, real(4,8) integer, real(4,8) real(4,8) integer, real(2,4,8), complex integer, real(4,8) Table 4 ...
modulo mvbits nearest nint not nworkers number_of_processors pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl ...
MODULO vs. MOD function 7:13 AM · Dec 30, 2021 Compiler Support for the Fortran 2008 and 2018 Standards 1:59 PM · Dec 29, 2021 Many compilers evaluate ALL(x==y) efficiently with short-circuiting 12:16 PM · Dec 29, 2021 LEN of a character variable may be deferred in Fortran 200...
Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up {...
INTEGER INTENT INTERFACE INTRINSIC KIND LOGICAL LOOP MAP MODULE NAMELIST NONE NULLIFY ONLY OPEN OPERATOR OPTIONAL OTHERWISE OUT PARAMETER POINTER PRIVATE PROCEDURE PROGRAM PUBLIC QUIT READ REAL RECORD RECURSIVE REMOTE RESULT RETURN REWIND SAVE SELECT SEQUENCE STOP STRUCTURE SUBROUTINE TARGET THEN TO TYPE ...
cmplx real or (real,real) modulo integer, real conjg complex nint real dim integer, real real integer, real, complex floor real sign integer, real Table 4. Fortran Mathematical Intrinsics Name Argument Datatypes Name Argument Datatypes acos real cosh real acosh real erf real asin real erfc real...
modulo(x,y)a abs(x) mod(x,y) complex conjugate imaginary part drop fraction round number conj(z) imag(z) fix(x) round(x) conjg(z) imag(z) aint(x) nint(x) conjg(z) aimag(z) aint(x) nint(x) cosine sine tangent cos(x) sin(x) tan(x) cos(x) sin(x) tan(x) cos(x) ...
The result of this is the value of the remainder after dividingexpression1byexpression2. Also called the modulo operator. expression1&expression2 Returns a bitwise AND operation done onexpression1andexpression2. The result is a value the same size as the expressions with its bits modified using th...