关于例如,数组a()中有1,6,9,6,10,11,6,9,6这些值,怎样才能计算出值“6”的个数“4”??的问题
Dim n,count
For n=0 to ubound(a)
if a(n)=6 then count=count+1
next n
Print count
关于例如,数组a()中有1,6,9,6,10,11,6,9,6这些值,怎样才能计算出值“6”的个数“4”??的问题
Dim n,count
For n=0 to ubound(a)
if a(n)=6 then count=count+1
next n
Print count