![]() |
#2
风吹过b2013-04-09 21:38
|
10-100以内各位数字之和为12且此数为偶数的程序。
dim a,b ,c,i as integer
a=0:b=0:c=0
for i=10 to 100 step 2
a=i mod 10
b=i\10
if a+b=12 and i mod 2=0 then
c=i
endif
next i
print c
这个程序结果只有一个84,为什么没48和66呀。请指教谢谢!!!