Rexx - randu() 方法

此方法返回 0 到 1 之间的伪随机数。

语法

randu() 

参数

None

返回值

返回 0 到 1 之间的伪随机数。

示例

/* 主程序 */
options arexx_bifs 
say randu() 

当我们运行上面的程序时,我们将得到以下结果。

输出

0.396464774

❮ rexx_regina.html