题目内容
a=1
b=2
while a<=4
a=a+b
b=a-b
wend
print a, b
end
A. 4, -1 B. 7, 4 C. 4, 3 D. 6, -2
B
A.1 B.2 C.3 D.4