学校考试,题目是VB数组。如下:设dim A(3,4)B(1,2,3)C(3,5,7)as string dim k 当K=A+B+C时,让你找出A,B,C的值。请问我该怎么办呢?(VB或ASP都可以)帮帮忙吧。10分
參考答案:for i=0 to 1
for j=0 to 2
for m=0 to 2
if a(i)+b(j)+c(m)=K then
'方式一:有一个结果就退出
newA=a(i)
newB=b(j)
newC=c(m)
exit for
'方式二:找出所有匹配条件
response.write a(i) & b(j) & c(m)
end if
next
next
next