您的位置:首页 > 其它

十进制转化成十六进制i

2016-05-07 17:18 267 查看
老师,我就问一句,yushu+55 什么意思?!

Private Sub Command1_Click()

Me.Font.Size = 50

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