Private Sub Form_Click()
If Val(Text1.Text) Mod 2 = 0 Then
Text3.Text = "text1的值是偶数"
Else
Text3.Text = "text1的值是奇数"
End If
If Val(Text2.Text) Mod 2 = 0 Then
Text3.Text = Text3.Text + vbCrLf + "text2的值是偶数"
Else
Text3.Text = Text3.Text + vbCrLf + "text2的值是基数"
End If
If Text1.Text <> "" And Text2.Text <> "" Then
If Val(Text1.Text) >= Val(Text2.Text) Then
Text3.Text = Text3.Text + vbCrLf + "最大数值是" + Text1.Text
Else
Text3.Text = Text3.Text + vbCrLf + "最大数值是" + Text2.Text
End If
End If
End Sub
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
输入的同时自动显示结果,可以在text中的change事件里写入代码
不过,工作量要大很多,需要判断是否有数字,和数字录入的先后顺序
知识有限,仅供参考,希望对你有帮助
[此贴子已经被作者于2018-10-19 08:35编辑过]