-- 1.while循環 --a=1 --while(a<=20) do -- if a%2==1 then -- print(a) -- end -- a=a+1 --end -- 2.數值for循環 --b=2 --sum=0 --for i=1,100,1 do -- sum=sum+i -- print(sum) --end --print("-------------") --print(sum) -- -- 3. 泛型for循環 --tab1={ one=1, two=2, three=3, four=4, five=5} --for k,v in pairs(tab1) do -- print(k..'='..v) --end -- -- 4. 泛型for循環2 --local tbl2 = {"apple", "pear", "orange", "grape"} --for k,v in pairs(tbl2) do -- print(k, v) --end -- -- 5. repeat until循環 c=1 repeat print(c) c=c+2 until c>=100