二进制|函数|十进制|转换
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
时间: 2024-09-07 04:22:14
二进制|函数|十进制|转换
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