填空题
二维数组
在内存中的存储顺序为()
【参考答案】
1324
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
下列程序的运行结果是()。 Program main implicit none integer, target :: a=1 integer, pointer :: p p=>a p=3 write(*,*)a end
点击查看答案
填空题
下列程序的运行结果是()。 Program main implicit none integer ::a=1 integer ::b=2 call add ( a ) Call add ( b) Write(*,*) a , b Stop end Subroutine add (sum) Implicit none integer :: sum sum=sum+1 Return end
点击查看答案
相关试题
阅读下列FORTRAN77程序: 在执行上述程...
阅读下列FORTRAN程序,写出运行上述程序后...
阅读下列FORTRAN程序,写出最后输出的X值。
阅读下列FORTRAN程序,写出程序运行的结果...
阅读下列FORTRAN程序,写出程序运行的结果...