判断素数的VB编程```vbPublic Function IsPrime(ByVal num As Integer) As Boolean ' 素数是大于1且只能被1和自身整除的数 If num ˂= 1 Then Return False End If For i As Integer = 2 To Math.Sqrt(num) If num Mod i = 0 Then Return False End If Ne...