代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/258562/11854841
for ex0514.for
PROGRAM ex0514
IMPLICIT NONE
REAL height ! 记录身高
REAL weight ! 记录体重
WRITE(*,*) "height:"
READ(*,*) height ! 读入身高
WRITE(*,*) "weight:"
READ(*,*) weight ! 读入体重
IF ( weig
www.eeworm.com/read/258562/11854863
f90 ex0839.f90
program ex0839
implicit none
integer :: a
read(*,*) a
call sub( a, *100, *200 )
! 特别另外指定两个返回点, 分别是行代码100及200这两个地方
write(*,*) "Default"
stop
100 write(*,*) "Return 1"
stop
www.eeworm.com/read/221868/14716682
f90 ex0718.f90
program ex0718
implicit none
integer, parameter :: size=10
integer :: a(size) = (/ 5,3,6,4,8,7,1,9,2,10 /)
integer :: i,j
integer :: t
do i=1, size-1
do j=i+1, size
if
www.eeworm.com/read/221868/14716775
f90 ex0903.f90
program ex0903
implicit none
character(len=20) :: filename = "ex0903.f90"
logical alive
inquire(file=filename, exist=alive)
if ( alive ) then
write(*,*) filename," exist."
els
www.eeworm.com/read/221868/14716792
f90 ex0902.f90
program ex0902
implicit none
character(len=20) :: string
open(unit=10, file="test.txt")
write(10,"(A20)") "Good morning." ! 写到文件中
rewind(10)
read(10,"(A20)") string ! 从文件中读出来
wr
www.eeworm.com/read/221868/14716816
f90 ex0901.f90
program ex0901
implicit none
open(unit=10, file="hello.txt")
write(10,*) "Hello"
stop
end
www.eeworm.com/read/221868/14716883
for ex0516.for
PROGRAM ex0516
IMPLICIT NONE
INTEGER I
INTEGER N
DATA I,N /2,1/
GOTO(10,20,30) I/N
10 WRITE(*,*) 'I/N=1'
GOTO 100
20 WRITE(*,*) 'I/N=2'
GOTO 100
3
www.eeworm.com/read/221868/14716892
f90 ex0510.f90
program ex0510
implicit none
real :: a
real :: b = 4.0
real, parameter :: e = 0.0001
a=SQRT(b)**2-b ! 理论上a应该要等于0
if ( abs(a-0.0)
www.eeworm.com/read/221868/14716907
for ex0514.for
PROGRAM ex0514
IMPLICIT NONE
REAL height ! 记录身高
REAL weight ! 记录体重
WRITE(*,*) "height:"
READ(*,*) height ! 读入身高
WRITE(*,*) "weight:"
READ(*,*) weight ! 读入体重
IF ( weig
www.eeworm.com/read/221868/14716933
f90 ex0839.f90
program ex0839
implicit none
integer :: a
read(*,*) a
call sub( a, *100, *200 )
! 特别另外指定两个返回点, 分别是行代码100及200这两个地方
write(*,*) "Default"
stop
100 write(*,*) "Return 1"
stop