ex0803.f90
来自「fortran 95书的源程序全集」· F90 代码 · 共 16 行
F90
16 行
program ex0803
implicit none
integer :: a = 1
call sub1()
write(*,"('a =',I2)") a
stop
end program ex0803
subroutine sub1()
implicit none
integer :: a=2
write(*,"('a =',I2)") a
return
end subroutine sub1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?