vb输入圆半径求圆的面积 VB中如何写程序代码计算圆的面积?
VB中如何写程序代码计算圆的面积?
A:试试这个:
private sub formuuuload()
dim R,s as long
R=Val(InputBox(“please input the radius”,“calculate the area of the circle”,1))
s=3.14*R*R
print“the area of the circle is:“s
end sub
]”直接把这个代码复制到代码区,然后单击窗体输入任意值以获得圆的面积私有子窗体uClick()dim x As Integer,PI As single,PI=3.1415926 x=InputBox(“enter radius of a circle”)y=3.14*x*msgbox“圆的面积为:”¥d sub
首先,创建一个带有两个标签的窗体form1。标题分别是“输入圆的半径”和“圆的面积:”两个文本,文本属性是,命令按钮cmdsqr添加了其代码private sub cmdsqr Click()text2。Text=3.1415926*val(Text1。文字)^2末端sub作为布局,我相信你会做得很好
private sub command1uClick()
d=InputBox(“please enter the diameter of the circle”
s=3.1415926/4*d^2
l=3.1415926*d
msgbox(“area of the circle”& s& vbcrlf&“perior of the circle”& l)
end sub
private sub command2u单击()
r=InputBox(“请输入圆半径”
s=3.1415926*(r^2)
l=2*3.1415926*r
msgbox(“圆面积”&;s&vbcrlf&;“圆周长”&;l)
vb输入圆半径求圆的面积 圆的面积和周长怎么求 计算圆的面积的编程
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。