| 发表于:2008-01-10 16:03:413楼 得分:0 |
十位不是偶数个位不是奇数 1. for i=1 to 9 step 2 for j=0 to 8 step 2 print i * 10 + j next j next i 2. for i = 12 to 98 step 2 if i \ 10 mod 2 then debug.print i next i 3. for i = 11 to 99 if i \ 10 mod 2 and not i mod 2 then debug.print i next i | | |
|