在perl中如何生成随机数

在perl中生成1到100的随机数

#! perl
 
# 初始化 rand()
srand

print int( rand( 100 ) ) + 1

日期:2020-04-11 23:04:31 来源:oir作者:oir