?? ex0811.f90
字號:
program ex0811
implicit none
integer :: a,b
common /group1/ a
common /group2/ b
a=1
b=2
call ShowGroup1()
call ShowGroup2()
stop
end
subroutine ShowGroup1()
implicit none
integer :: num1
common /group1/ num1
write(*,*) num1
return
end
subroutine ShowGroup2()
implicit none
integer :: num1
common /group2/ num1
write(*,*) num1
return
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -