vb編寫程式,隨機產生10到100間的整數輸出這些數

2021-03-03 20:58:54 字數 901 閱讀 7615

1樓:聽不清啊

private sub ***mand1_click()dim a(20) as integer

randomize

max = 0: j = 0

for i = 1 to 20

a(i) = int(91 * rnd) + 10print a(i);

if max < a(i) then max = a(i): j = i

next i

print

print "最大值="; max, "出現在第版權"; j; "個"

print

end sub

編寫程式,隨機生成50個兩位整數,按每行10個輸出 5

2樓:兄弟連教育北京總校

看代來碼:自12

3456

78910

1112

1314

1516

1718

1920

2122

2324

2526

2728

2930

3132

#include

#include

void print_arr (int* a, int n)}printf("\n");

}#define n 50

int main(int argc, char** argv)print_arr(a, n);

return 0;}

3樓:匿名使用者

#include

#include

void main()}

4樓:匿名使用者

給採納,給你=寫~ - -

vb編寫程式利用隨機函式rnd生成

n 10 int 90 rnd st st n forj 2 to n n1 n1 1 exit for text1.text st text2.text n n1 private sub mand1 click dim i as integer,j as integer,n as integer,...

怎麼編寫程式MATLAB,產生兩位隨機整數,輸出其中小

如三秋 根據目的判斷,需要調取到的函式有randi mod mean find,分別用於產生隨機整數 判斷是否為偶數 計算平均數 尋找滿足條件元素的下標。如下 clc clear n randi 10,99 1,20 產生隨機數,在10到99之間的均勻隨機數 a mean n 計算平均數 n fin...

vb 程式設計 如何利用隨機函式產生10到90的奇數組成的

private sub command1 click randomize dim a 14 as integer for i 0 to 14 a i 2 next i label1.caption for i 0 to 14 doa i int rnd 81 10 loop until a i mo...