- 论坛徽章:
- 145
|
回复 1# TrishaTie
you will get the same serial random number to run your code for each times if you didn't call srand()
Note: Perl will call the srand() by automatic, but you need call the srand() by yourself in awk
$ perl -le 'print rand().",".rand()' | awk '{print "perl rand="$0"\nawk rand="rand()","rand()}'
perl rand=0.44752758725463,0.832324767575727
awk rand=0.237788,0.291066
$ perl -le 'print rand().",".rand()' | awk '{print "perl rand="$0"\nawk rand="rand()","rand()}'
perl rand=0.504112446754338,0.274402088808955
awk rand=0.237788,0.291066
$ perl -le 'print rand().",".rand()' | awk '{srand();print "perl rand="$0"\nawk rand="rand()","rand()}'
perl rand=0.494342387261899,0.90917811901042
awk rand=0.744674,0.889506
$ perl -le 'print rand().",".rand()' | awk '{srand();print "perl rand="$0"\nawk rand="rand()","rand()}'
perl rand=0.276083956546248,0.33885375070119
awk rand=0.0146326,0.581655 |
|