⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 random_1.f90

📁 linux下编程用 编译软件
💻 F90
字号:
! PR15619! Check that random_seed works as expected.! Does not check the quality of random numbers, hence should never fail.program test_random  implicit none  integer, allocatable :: seed(:)  real, dimension(10) :: a, b  integer n;   call random_seed (size=n)  allocate (seed(n))    ! Exercise the generator a bit.  call random_number (a)  ! Remeber the seed and get 10 more.  call random_seed (get=seed)  call random_number (a)  ! Get the same 10 numbers in two blocks, remebering the seed in the middle  call random_seed (put=seed)  call random_number (b(1:5))  call random_seed(get=seed)  call random_number (b(6:10))  if (any (a .ne. b)) call abort  ! Get the last 5 numbers again.  call random_seed (put=seed)  call random_number (b(6:10))  if (any (a .ne. b)) call abortend program

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -