arithmeticif.f90

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 26 行

F90
26
字号
! Program to test the arithmetic if statementfunction testif (a)   implicit none   integer a, b, testif   if (a) 1, 2, 3   b = 2   goto 4 1 b = -1   goto 4 2 b = 0   goto 4 3 b = 1 4 testif = bend functionprogram testwrite   implicit none   integer i   integer testif   if (testif (-10) .ne. -1) call abort   if (testif (0) .ne. 0) call abort   if (testif (10) .ne. 1) call abortend program

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?