代码搜索:implicit

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

代码结果 5,250
www.eeworm.com/read/476406/6760783

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/476406/6760785

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/476406/6760794

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/476406/6760801

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/476406/6760804

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/476406/6760827

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/476406/6760831

f90 ex0601.f90

program ex0601 implicit none integer counter integer, parameter :: lines=10 ! counter
www.eeworm.com/read/476406/6760832

f90 ex0608.f90

program ex0608 implicit none integer :: i,j outter: do i=1,3 inner: do j=1,3 write(*, "('(',i2,',',i2,')')" ) i,j end do inner end do outter stop end
www.eeworm.com/read/476406/6760833

f90 ex0606.f90

program ex0606 implicit none integer :: dest = 9 integer floor do floor=1, dest if ( floor==4 ) cycle write(*,*) floor end do stop end
www.eeworm.com/read/476406/6760836

f90 ex0603.f90

program ex0603 implicit none integer i,j do i=1, 3 do j=1, 3 write(*, "(I2,I2)") i,j end do write(*,*) "another circle" end do stop end