代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/221868/14716980
f90 ex0802.f90
program ex0802
implicit none
call sub1()
call sub2()
stop
end program ex0802
subroutine sub1()
implicit none
write(*,*) "This is sub1"
call sub2()
return
end subroutine sub1
www.eeworm.com/read/221868/14716989
f90 ex0824.f90
program ex0824
implicit none
integer, parameter :: players = 5
real :: angle(players) = (/ 30.0, 45.0, 35.0, 50.0, 40.0 /)
real :: speed(players) = (/ 25.0, 20.0, 21.0, 27.0, 22.0 /)
real
www.eeworm.com/read/216987/14983564
f90 count_struct.f90
!------------------------------------------------------------------------------!
! Liste de fonctions : count_struct Auteur : J. Gressier
! Date : Mai 2
www.eeworm.com/read/216545/15003788
err mstick.err
"src\mstick.c", line 451: Warning: C2895E: implementation defined shift (treated as 8 bit unsigned)
"src\mstick.c", line 816: Warning: C2917W: no side effect in void context: 'unary *'
"src\ms
www.eeworm.com/read/208614/15242238
f90 quick_sort.f90
! 快速排序法范例
! By Perng 1997/8/30
program QuickSort_Demo
implicit none
integer, parameter :: N=10
real :: B(N)
integer :: A(N)
! 用随机数来产生数列
call random_seed()
call random_number(B
www.eeworm.com/read/208614/15242297
f90 sglimg2.f90
module sgl_util
use sgl
implicit none
integer(1), save :: buffer(3*512*512)
integer(4), save :: buffer4(3*512*512/4)
equivalence(buffer,buffer4)
contains
subroutine display()
c
www.eeworm.com/read/208614/15242299
f90 sglimg.f90
module sgl_util
use sgl
implicit none
integer(1), save :: buffer(3*512*512)
integer(4), save :: buffer4(3*512*512/4)
equivalence(buffer,buffer4)
contains
subroutine display()
c
www.eeworm.com/read/208614/15242330
f90 ex0609.f90
program ex0609
implicit none
integer :: i,j
loop1: do i=1,3
loop2: do j=1,3
if ( i==3 ) exit loop1 ! 跳离loop1循环
if ( j==2 ) cycle loop2 ! 重做loop2循环
write(*, "('
www.eeworm.com/read/208614/15242359
f90 ex1104.f90
module MA
implicit none
interface show ! 虚拟的函数名称show
module procedure show_int ! 等待选择的函数show_int
module procedure show_character ! 等待选择的函数show_character
end interface
con
www.eeworm.com/read/208614/15242387
f90 gendata.f90
program gendata
implicit none
integer students
integer i
real r(5)
write(*,"(6A5)") "座号","中文","英文","数学","自然","社会"
call random_seed()
write(*,*) "How many students?"
read(