转换十进制为二进制的函数

发表于:2007-06-30来源:作者:点击数: 标签:
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

原文转自:http://www.ltesting.net