Fortran Expression and I/O statement

Arithmetic & Integer Expressions in Fortran

Arithmetic Expressions To know about the Arithmetic Expressions first of all we must should know about Arithmetic Operators which is given below: Operation Fortran operator + Add – Subtract * Multiply / Divide ** Exponentiation Integer expressions We know about integers that it have no decimal point. These are expressed as the following rules like: …

Arithmetic & Integer Expressions in Fortran Read More »

Relational Logical Expressions in fortran

Relational Logical Expressions are expressed with the help of Relational operators. Relational operators These are the relational operators: Mathematical symbol Meaning Fortran equivalent > greater than .GT. >= greater than or equal to .GE. < less than .LT. <= less than or equal to .LE. = equal to .EQ. <> not equal to .NE. Example: …

Relational Logical Expressions in fortran Read More »

Scroll to Top