vb编程题目 设计一个计算器,求平方,开方,绝对值 详细编程
2个回答
展开全部
平方用 A^ 2
开方sqr(A)
绝对值ABS(A)
开方sqr(A)
绝对值ABS(A)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Dim res, a As Double
Private Sub Command1_Click()
a = CDbl(Text1.Text)
res = a * a
Label1.Caption = res
End Sub
Private Sub Command2_Click()
a = CDbl(Text1.Text)
If a >= 0 Then
res = Sqr(a)
Label1.Caption = res
Else
res = Sqr(Abs(a))
Label1.Caption = res & "i"
End If
End Sub
Private Sub Command3_Click()
a = CDbl(Text1.Text)
res = Abs(a)
Label1.Caption = res
End Sub
Private Sub Command1_Click()
a = CDbl(Text1.Text)
res = a * a
Label1.Caption = res
End Sub
Private Sub Command2_Click()
a = CDbl(Text1.Text)
If a >= 0 Then
res = Sqr(a)
Label1.Caption = res
Else
res = Sqr(Abs(a))
Label1.Caption = res & "i"
End If
End Sub
Private Sub Command3_Click()
a = CDbl(Text1.Text)
res = Abs(a)
Label1.Caption = res
End Sub
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询