您的位置:首页 > 编程语言 > VB

VB作业

2016-05-16 16:14 405 查看
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

Select Case yushu

Case 10, 11, 12, 13, 14, 15

f = Chr(yushu + 55)

End Select

End If

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