0
3
221
while語句 while 循環(huán)條件 do 希望循環(huán)的處理 end (do可以省略) i = 1...
if~then~end (then可以省略) if 條件 then 條件成立時執(zhí)行的處理 end a = 20 if a...
x = 10 y = 20 z = 30 area = (x*y + y*z + z*x) * 2 volume = x * y * z pri...