?? ex1206f.f90
字號:
subroutine getstring(a)
!
implicit none
character(len=*) :: a
write(*,*) a
return
end subroutine
module typedef
implicit none
type person
sequence
integer age
real weight, height
end type
end module
subroutine getperson(p)
use typedef
implicit none
type(person) :: p
write(*,"('age:',I3,' weight:',F5.1,' height:',F5.1)") p
return
end subroutine
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -