2014-04-02 22:34:03 補充
for i=0 to 11
a=int(i/4)
b=(i mod 4) +1
c=b * 10^a
print c
next
程式說明:
a可以得到10的幾次方,當i=0~3時,a=0次方,i=4~7時,a=1次方,i=8~11時,a=2次方.
b取於數,可以得到i=0~3時,b=1~4(第1輪),i=4~7時,b=1~4(第2輪),i=8~11時,b=1~4(第3輪).
c會得到,i=0~3時,c=1~4(第1輪),i=4~7時,c=10~40(第2輪),i=8~11時,c=100~400(第3輪).
This entry passed through the Full-Text RSS service — if this is your content and you're reading it on someone else's site, please read the FAQ at fivefilters.org/content-only/faq.php#publishers.
留言列表