clear all;close all;clc
add=0; %大于0.5的各数的和num=0; %大于0.5的次数count=0; %总的随机次数while(add < 10) temp=rand; if(temp>0.5) num=num+1; add=add+temp; end count=count+1;end[num count]add 每次运算结果“皆”不同,如下为一示例:
ans =
12 26
add =
10.0613
clear all;close all;clc
add=0; %大于0.5的各数的和num=0; %大于0.5的次数count=0; %总的随机次数while(add < 10) temp=rand; if(temp>0.5) num=num+1; add=add+temp; end count=count+1;end[num count]add 每次运算结果“皆”不同,如下为一示例:
ans =
12 26
add =
10.0613