您的位置:首页 > 其它

16进制

2016-05-07 17:46 253 查看
Private Sub Command1_Click()

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

  a = a \ b

  If yushu < 10 Then

  s = yushu & s

  Else

  s = Chr(yushu + 55) & s

  End If

 

  Wend

 Print s

 End Sub

余数超过9之后,应该用 大写字母 A B C D 依次排列。在ASCII码中 A对应的数字为65。余数如果为10的话,那么在数值相差55 。

2..

Private Sub Command1_Click()

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

 

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