摘要: '十進制轉二進制 Function dec2bin(mynum) dim loopcounter If mynum >= 2 ^ 31 Then dec2bin = "Too big" Exit Function End If Do If (mynum And 2 ^ loopcounter) = 2 ^ loopcounter Then dec... 阅读全文
posted @ 2008-02-26 09:17 Athrun 阅读(572) 评论(0) 推荐(0) 编辑