VB单击按钮判断文本框中输入的数是否为质数,判断结果显示在label2中
1个回答
展开全部
Private Function IsPrime(ByVal n As Integer) As Boolean
Dim pb As Integer
pb = n - 1
IsPrime = True
For i = 2 To pb
If n Mod i = 0 Then
IsPrime = False
Exit For
End If
Next i
End Function
更多追问追答
追问
答案要显示在Label2中,麻烦你修改一下
追答
Private Sub Command2_Click()
If IsPrime(Val(Text1.Text)) Then
Label2.Caption = Text1.Text & "是素数"
Else
Label2.Caption = Text1.Text & "不是素数"
End If
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询