2个回答
展开全部
Option Explicit
Private Sub Command1_Click()
Dim inputStr As String
Dim inputValue As Double
inputStr = InputBox("请输入一个数", "等待输入")
If Len(inputStr) = 0 Then Exit Sub
inputValue = Val(inputStr)
If inputValue Mod 2 = 0 And inputValue Mod 3 = 0 And inputValue Mod 5 = 0 Then
MsgBox "输入的数为:" & CStr(inputValue) & ",可以被2、3、5整除", vbInformation
Else
MsgBox "输入的数为:" & CStr(inputValue) & ",不可以被2、3、5整除", vbInformation
End If
End Sub
展开全部
'需求不够严谨,以下请参考
Sub test()
Dim a As Integer
a = Int(InputBox("输入一个整数", "输入"))
If a Mod 2 = 0 Then
MsgBox ("能被2整除")
End If
If a Mod 3 = 0 Then
MsgBox ("能被3整除")
End If
If a Mod 5 = 0 Then
MsgBox ("能被5整除")
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询