arithmeticif.f90
来自「linux下编程用 编译软件」· 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 + -
显示快捷键?