生成隨機數工具

2021-06-27 10:45:55 字數 1229 閱讀 4901

部落格主頁:

寫測試**的時候經常需要產生一堆隨機數,比如排序時定義乙個鍊錶,手動輸入一串隨機數總是很麻煩

如:

listlist = lists.newarraylist(37,96,81,13,49,20,64,56,22,86,60,20,80,1,98,70,71,12,10,44,89,48,20,39,52,50,45,88,54,22);

指令碼檔案:

[root@jjy /shell]# cat random.sh

#!/bin/bash

#coder: jianjun.yu

#date: 2023年 12月 04日 星期四 14:44:00 hkt

until [[ $count -gt 0 && $min -gt 0 && $max -gt $min ]];

do read -p "please input willbe produce random counts:" count

read -p "please input willbe produce random min:" min

read -p "please input willbe produce random max:" max

done

for i in `seq 1 $count`; do

result=$(($random % $(($max -$min)) + min ))

echo $result;

done

執行結果:

[root@jjy /shell]# random.sh | tr '\n' ','

please input willbe produce random counts:30

please input willbe produce random min:1

please input willbe produce random max:100

37,96,81,13,49,20,64,56,22,86,60,20,80,1,98,70,71,12,10,44,89,48,20,39,52,50,45,88,54,22,

隨機生成隨機數

現畫乙個command命令按鈕,進行貼上。private sub command1 click show me scale 0,0 18,8 me.auto redraw true me.draw mode 2 circle 3,4 3,vb red me.auto redraw false lin...

隨機數生成

原型 void srand unsigned seed 用法 srand和rand 配合使用產生偽隨機數序列。rand函式在產生隨機數前,需要系統提供的生成偽隨機數序列的種子,rand根據這個種子的值產生一系列隨機數。如果系統提供的種子沒有變化,每次呼叫rand函式生成的偽隨機數序列都是一樣的。sr...

生成隨機數

1 生成num位數驗證碼 用於簡訊驗證功能 public static random rand new random public static string getcode int num result,s k return result random r new random 建立乙個隨機數生成...