【求助】请各位高手帮帮忙,小弟在线等!
小弟在做VB题目中遇到三个题目不明白,希望各位高手可以给予指点。
一、下列语句正确的是
A) If x<3y And x>y Then y=x^3
B) If x<3y And x>y Then y=3x
C) If x<3y:x>y Then y=x^3
D) If x<3y And x>y Then y=x3
为什么这题的答案是A?
二、private sub form_click()
dim i as integer,j as integer,k as integer
i=1:j=1:k=5
do while i<=k*j
j=j+1
print i;j
loop
print i;j
end sub
请问这题的输出结果是多少?是怎么得到的?
三、还有一题:
private sub form_click()
dim i as integer,j as integer
i=10
do
i=i+j
for j=10 to i step-3
i=i+j
next j
loop while i<50
print i;j
end sub
这题的输出结果是多少?
请各位高手帮忙看一下,小弟不胜感激!谢谢!