vb编程 输入圆半径,计算圆周长和圆面积
输入圆半径,计算圆周长和圆面积为了保证程序运行的正确,对输入的半径要进行合法性检查,如发现输入的数中有非法数字,利用msgbox显示出错信息,利用setfocus方法定位...
输入圆半径,计算圆周长和圆面积
为了保证程序运行的正确,对输入的半径要进行合法性检查,如发现输入的数中有非法数字,利用msgbox显示出错信息,利用setfocus方法定位出错的文本框处,重新输入 展开
为了保证程序运行的正确,对输入的半径要进行合法性检查,如发现输入的数中有非法数字,利用msgbox显示出错信息,利用setfocus方法定位出错的文本框处,重新输入 展开
2个回答
展开全部
Private Sub cmdOK_Click()
Dim PI As Double
PI = 3.14
If IsNumeric(Trim(txtR.Text)) = False Then
MsgBox "请输入一个合法的数"
txtR.Text = ""
txtR.SetFocus
Exit Sub
End If
txtG.Text = FormatNumber((2 * PI * Val(txtR.Text)), 2)
txtA.Text = FormatNumber(PI * Val(txtR.Text) * Val(txtR.Text), 2)
End Sub
Private Sub Form_Load()
txtR.Text = ""
txtG.Text = ""
txtA.Text = ""
Me.Show
txtR.SetFocus
End Sub
-----------------
txtR:半径 txtG:周长 txtA: 面积
Dim PI As Double
PI = 3.14
If IsNumeric(Trim(txtR.Text)) = False Then
MsgBox "请输入一个合法的数"
txtR.Text = ""
txtR.SetFocus
Exit Sub
End If
txtG.Text = FormatNumber((2 * PI * Val(txtR.Text)), 2)
txtA.Text = FormatNumber(PI * Val(txtR.Text) * Val(txtR.Text), 2)
End Sub
Private Sub Form_Load()
txtR.Text = ""
txtG.Text = ""
txtA.Text = ""
Me.Show
txtR.SetFocus
End Sub
-----------------
txtR:半径 txtG:周长 txtA: 面积
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Command1_Click()
Dim pi As Single
Dim r As Single
Dim L As Single
Dim A As Single
pi = 3.141592654
r = InputBox("输入半径R=")
L = pi * r
A = r ^ 2 * pi / 4
Print "周长=", L
Print "面积=", A
End Sub
Dim pi As Single
Dim r As Single
Dim L As Single
Dim A As Single
pi = 3.141592654
r = InputBox("输入半径R=")
L = pi * r
A = r ^ 2 * pi / 4
Print "周长=", L
Print "面积=", A
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询