Initial version.
This commit was SVN r3916.
Этот коммит содержится в:
родитель
e31cf84924
Коммит
a6a7277d8e
36
src/mpi/f90/test/print_rkinds.f90
Обычный файл
36
src/mpi/f90/test/print_rkinds.f90
Обычный файл
@ -0,0 +1,36 @@
|
||||
!
|
||||
! Copyright (c) 2004-2005 The Trustees of Indiana University.
|
||||
! All rights reserved.
|
||||
! Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
||||
! All rights reserved.
|
||||
! Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
||||
! University of Stuttgart. All rights reserved.
|
||||
! $COPYRIGHT$
|
||||
!
|
||||
! Additional copyrights may follow
|
||||
!
|
||||
! $HEADER$
|
||||
!
|
||||
! print_rkinds.f90
|
||||
! - prints out values of selected_real_kind to determine Fortran compiler
|
||||
! dependent values
|
||||
!
|
||||
program main
|
||||
integer :: i
|
||||
!
|
||||
! real :: x = 2.2_QUAD
|
||||
!
|
||||
complex(kind(1.D0)) :: z
|
||||
|
||||
do i = 1, 32
|
||||
print*, "i = ", i, "selected_real_kind(i) = ", selected_real_kind(i)
|
||||
end do
|
||||
|
||||
print*, "kind(1.E0) = ", kind(1.E0)
|
||||
print*, "kind(1.D0) = ", kind(1.D0)
|
||||
!
|
||||
! print*, "kind( real :: x = 2.2_QUAD ) = ", kind(x)
|
||||
!
|
||||
print*, "kind( complex(kind(1.D0) :: z ) = ", kind(z)
|
||||
|
||||
end program main
|
Загрузка…
Ссылка в новой задаче
Block a user