代码搜索:implicit

找到约 5,250 项符合「implicit」的源代码

代码结果 5,250
www.eeworm.com/read/360544/10088576

f90 forlib.f90

real function circle_area(radius) !DEC$ ATTRIBUTES DLLEXPORT :: CIRCLE_AREA !DEC$ ATTRIBUTES ALIAS : "Circle_Area" :: CIRCLE_AREA implicit none real radius real, parameter :: PI = 3.14159
www.eeworm.com/read/360544/10088592

f90 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
www.eeworm.com/read/360544/10088598

f90 ex1207f.f90

subroutine getinteger(num) !DEC$ ATTRIBUTES C, ALIAS:'_getinteger' :: getinteger implicit none integer num write(*,*) num return end subroutine subroutine getstring(string, len) !DEC
www.eeworm.com/read/360544/10088605

f90 ex1208f.f90

module typedef implicit none type person integer age real weight, height end type end module program main use typedef implicit none integer :: a=3 character(len=20)
www.eeworm.com/read/360544/10088607

f90 ex1201s.f90

subroutine SUB() !DEC$ ATTRIBUTES DLLEXPORT :: SUB implicit none write(*,*) "Subroutine in DLL" return end
www.eeworm.com/read/360543/10088615

f90 ex1109.f90

module NewGraphLib use TextGraphLib implicit none contains subroutine OutputToFile(filename) implicit none character(len=*), intent(in) :: filename character(len=10) :: fmt="(xxx
www.eeworm.com/read/360543/10088617

f90 ex1106.f90

module MA implicit none type ta integer a end type interface operator(+) module procedure add end interface contains integer function add(a,b) type(ta), intent(in) ::
www.eeworm.com/read/360543/10088620

f90 ex1101.f90

module bank implicit none private money public LoadMoney, SaveMoney, Report integer :: money = 1000000 contains subroutine LoadMoney(num) implicit none integer :: num money=m
www.eeworm.com/read/360543/10088626

f90 ex1108.f90

module time_util implicit none type :: time integer :: hour,minute end type time interface operator(+) ! 让type(time)类型变量能够相加 module procedure add_time_time ! time+time module
www.eeworm.com/read/360543/10088629

f90 ex1102.f90

module bank implicit none integer :: money = 1000000 integer :: fileid = 10 private money, fileid private TimeLog contains subroutine TimeLog() implicit none integer :: num