For i = 0 To 30
For j = 0 To (k - 1)
If A(j) < Math(i) Then
If Math(i) <= A(j + 1) Then m(j) = m(j) + 1
Next j
Next i
少一个end if
For i = 0 To 30
For j = 0 To (k - 1)
If A(j) < math(i) Then
If math(i) <= A(j + 1) Then
m(j) = m(j) + 1
End If
end if '这里加句
Next j
Next i
在end if 后面再加个 end if
K是什么呀??
还差个end if 但就算把end if加上也不见得可以运行因为逻辑不对
你到底想实现什么功能呀??? 说出来看看啊
同楼上,你上个END IF.
写代码最好能缩进和对齐,不然你会遗漏的,看着也不方便.