编写VB程序,输入一个数,能否被2,3,5整除

编写VB程序,输入一个数,能否被2,3,5整除... 编写VB程序,输入一个数,能否被2,3,5整除 展开
 我来答
闪星2
推荐于2018-04-02 · TA获得超过3006个赞
知道大有可为答主
回答量:2898
采纳率:58%
帮助的人:1024万
展开全部
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

风起雪落2009
2016-04-07 · TA获得超过1597个赞
知道大有可为答主
回答量:1743
采纳率:74%
帮助的人:379万
展开全部
'需求不够严谨,以下请参考
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
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式