编程:输入一个字符,判断字符是数字,大写字母还是其他字符,分别显示在标签中
1个回答
展开全部
Private Sub Command1_Click()
ch = InputBox("请输入一个字符")
If ch >= "A" And ch <= "Z" Then
Label1.Caption = ch & "是一个大写字母"
Else
If ch >= "a" And ch <= "z" Then
Label1.Caption = ch & "是一个小写字母"
Else
If ch >= "0" And ch <= "9" Then
Label1.Caption = ch & "是一个数字"
Else
Label1.Caption = ch & "是一个其它字符"
End If
End If
End If
End Sub
Private Sub Form_Load()
Label1.Caption = ""
Label1.FontSize = 16
End Sub
ch = InputBox("请输入一个字符")
If ch >= "A" And ch <= "Z" Then
Label1.Caption = ch & "是一个大写字母"
Else
If ch >= "a" And ch <= "z" Then
Label1.Caption = ch & "是一个小写字母"
Else
If ch >= "0" And ch <= "9" Then
Label1.Caption = ch & "是一个数字"
Else
Label1.Caption = ch & "是一个其它字符"
End If
End If
End If
End Sub
Private Sub Form_Load()
Label1.Caption = ""
Label1.FontSize = 16
End Sub
追问
用C#编程
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询