代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/221870/14716535
f90 gauss2.f90
! 三带宽矩阵求解
! By Perng 1997/9/2
program main
implicit none
integer, parameter :: Width=3
integer, parameter :: Row=5 ! Size of Matrix
real :: A(Row,Width)=(/0,2,3,4,1,&
www.eeworm.com/read/221870/14716566
f90 ex1103.f90
module MA
implicit none
real a,b
contains
subroutine getx()
write(*,"('x=',F5.2)") -b/a
return
end subroutine
end module
module MB
use MA
implicit none
real c
contain
www.eeworm.com/read/221868/14716722
f90 ex0607.f90
program ex0607
implicit none
real, parameter :: weight=45.0
real, parameter :: error=0.0001
real :: guess = 0.0
do while( .true. )
write(*,*) "weight:"
read(*,*) guess
i
www.eeworm.com/read/221868/14716727
f90 ex0613.f90
program ex0613
implicit none
integer i
integer strlen
integer, parameter :: key = 2
character(len=20) :: string
write(*,*) "Encoded string:"
read(*,*) string
strlen = len_trim(
www.eeworm.com/read/221868/14716733
f90 ex0612.f90
program ex0612
implicit none
integer i
integer strlen
integer, parameter :: key = 2
character(len=20) :: string
write(*,*) "String:"
read(*,*) string
strlen = len_trim(string)
www.eeworm.com/read/221868/14716744
f90 ex1013.f90
module typedef
implicit none
type :: datalink
integer :: i
type(datalink), pointer :: prev ! 指向上一条数据
type(datalink), pointer :: next ! 指向下一条数据
end type datalink
end module typ
www.eeworm.com/read/221868/14716911
f90 ex0817.f90
program ex0817
implicit none
integer, parameter :: size = 5
integer :: s = size
integer :: a(size) = (/ 1,2,3,4,5 /)
call UseArray1(a,size) ! 把常数size传入做数组大小
call UseArray1(a,s) ! 把一
www.eeworm.com/read/221868/14716928
f90 gdemo2.f90
program gdemo2
use TextGraphLib
implicit none
call SetScreen( 20, 20 )
call SetCurrentChar('o') ! 改用o来作为填充字符
call DrawCircle( 8, 4 , 3, 4) ! 画圆
call SetCurrentChar('#')
www.eeworm.com/read/221868/14716938
f90 ex0837.f90
module constant
implicit none
real, parameter :: PI = 3.14159
real, parameter :: G = 9.81
end module
module typedef
implicit none
type player
real :: angle
real :: speed
www.eeworm.com/read/221868/14716946
f90 ex0842m.f90
program ex0842m
implicit none
call sub()
stop
end