主题:我是初学者请教VB编程高手
a="ABBACDDCBA"
for i=6 to 2 step-2
x=mid(a,i,i)
y=left(a,i)
z=right(a,i)
z=x&y&z
next i
print z
运行结果为BBABBA能够告诉我为什么是这个结果吗
for i=6 to 2 step-2
x=mid(a,i,i)
y=left(a,i)
z=right(a,i)
z=x&y&z
next i
print z
运行结果为BBABBA能够告诉我为什么是这个结果吗