more useless work done

This commit is contained in:
tTh
2023-05-07 23:48:37 +02:00
parent c47b99bf7d
commit c2d6abdedb
5 changed files with 98 additions and 10 deletions

21
Modules/trnd.f90 Normal file
View File

@@ -0,0 +1,21 @@
program essai
use mathstuff2
implicit none
integer :: foo, bar
real :: quux
double precision :: somme
write(0, *) "----------------- essai -------------------"
call init_random_seed() ! in module 'mathstuff'
somme = 0.0
do foo=1, 500
quux = rand() + rand()
somme = somme + quux
bar = mod(irand(), 7)
print *, foo, quux, somme/foo, bar
enddo
end program