看板
[ Fortran ]
討論串[問題] 有關 定址陣列 以及 常用副程式之間的問題
共 2 篇文章
首頁
上一頁
1
下一頁
尾頁
內容預覽:
program yes. implicit none. ....... logical,allocatable:: trans_all(:,:). ....... open(11,file='read_mode_total.txt'). ....... read(11,*)total. alloca
(還有201個字)
內容預覽:
program test_allocate. integer,allocatable :: test(:). parameter (n=3). allocate(test(1:n)). do i=1,n. test(i)=i. enddo. print*, '1',test. call sub_te
(還有117個字)
首頁
上一頁
1
下一頁
尾頁