日期:2013-10-13  浏览次数:20851 次

function zhuan(m) '翻译数据
for i=0 to 12
p=m mod 2
if p=1 then
have=have&i&","
end if
m=int(m/2)
if m=0 then
zhuan=have
exit function
end if
next
end function