★高一数学-算法初步-伪代码

2024-11-28 15:59:39
推荐回答(1个)
回答(1):

a=1,b=1,c=0,i=2
while i<20 do
c=a+b
a=b
b=c
i=i+1
end while
print b