代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/258562/11854066
f90 ex0719.f90
program ex0719
implicit none
integer, parameter :: L=3, M=4, N=2
real :: A(L,M) = (/ 1,2,3,4,5,6,7,8,9,10,11,12 /)
real :: B(M,N) = (/ 1,2,3,4,5,6,7,8 /)
real :: C(L,N)
integer :: i,j
www.eeworm.com/read/258562/11854069
f90 ex0711.f90
program ex0711
implicit none
integer :: i
integer :: a(5)=(/ (i,i=1,5) /)
integer :: b(5)=0
where( a
www.eeworm.com/read/258562/11854073
f90 ex0714.f90
program ex0714
implicit none
integer I,J
integer, parameter :: size = 5
integer :: a(size,size)
forall ( I=1:size, J=1:size, I>J ) a(I,J)=1 ! 上半部分
forall ( I=1:size, J=1:size, I==J
www.eeworm.com/read/258562/11854076
f90 ex0707.f90
program ex0707
implicit none
integer, parameter :: row = 2
integer, parameter :: col = 2
integer :: m(row, col)
integer r ! 用来指定row
integer c ! 用来指定column
data ((m(r,c), r=1, 2), c=
www.eeworm.com/read/258562/11854080
f90 ex0713.f90
program ex0713
implicit none
integer i
integer :: a(5)
forall(i=1:5)
a(i)=5
end forall
! a(1)=a(2)=a(3)=a(4)=a(5)=5
write(*,*) a
forall(i=1:5)
a(i)=i
end forall
www.eeworm.com/read/258562/11854101
f90 sgldemo1.f90
program main
use sgl
implicit none
external display ! 声明display是个函数
! 设定当窗口需要重绘时,会调用子程序display
call sglDisplaySub(display)
! 打开窗口, 窗口左上角为(100,100), 长宽同为500
call sglCreateWindow(
www.eeworm.com/read/258562/11854125
f90 utility.f90
module UTILITY
implicit none
contains
! 把value限制到min到max之间
subroutine Bound(min,max,value)
integer min,max,value
if ( valuemax ) value=max
end subrout
www.eeworm.com/read/258562/11854137
f90 main.f90
program main
use GAME
implicit none
call sglDisplaySub(display)
call sglKeyDownSub(keydown)
call sglIdleSub(OnIdle)
call Init()
call sglCreateWindow(50,50,SX,SY,1)
call sgl
www.eeworm.com/read/258562/11854215
f90 main.f90
program main
use GAME
implicit none
call sglDisplaySub(display)
call sglMouseMoveSub(MouseMove)
call sglEnableReshape(0)
call sglCreateWindow(50,50,SX,SY,1)
call InitGame()
c
www.eeworm.com/read/258562/11854233
f90 ex0601.f90
program ex0601
implicit none
integer counter
integer, parameter :: lines=10
! counter