您的位置:首页 > 其它

16进制的转换

2016-05-07 17:30 218 查看
Private Sub Command1_Click()

Me.Font.Size = 30

Dim a As Integer

Dim b As Integer

Dim s As String

Dim yushu As Byte

a = 1230: b = 16

While a <> 0

yushu = a Mod b

s = f(yushu) & s

a = a \ b

Wend

Print s

End Sub

Private Function f(yushu As Byte) As String

If yushu <= 9 Then

f = yushu

Else

f = Chr(yushu + 55)

End If

End Function
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: