请教:VB6编程中,怎样输出这个等式“根号A=B”?想输出根号这个符号出来,不是结果。知道SQR()这个函数。

输出结果是下图:表达这个等式输出结果是下图:表达这个等式... 输出结果是下图:表达这个等式
输出结果是下图:表达这个等式
展开
 我来答
挺生筝2554
2011-10-26 · TA获得超过2198个赞
知道小有建树答主
回答量:1084
采纳率:0%
帮助的人:564万
展开全部
将以下代码放进记事本里,保存为*.frm。
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3540
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3540
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 735
Left = 1320
TabIndex = 2
Top = 1080
Width = 1455
End
Begin VB.Label Label1
Caption = "_"
Height = 210
Left = 720
TabIndex = 0
Top = 555
Width = 3420
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "√"
Height = 180
Left = 585
TabIndex = 1
Top = 750
Width = 180
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim a As String
a = InputBox("请输入数字")
Dim i As Integer
Dim b As String
For i = 1 To Len(a)
b = b & "_"
Next
Label1.Caption = b
Label2.Caption = "√" & a & " =" & Sqr(Val(a))
End Sub
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式