VB.NET 怎样编写使用Do While 循环输出1-10的阶乘,我是新手请加上文字说明,呵呵,谢谢各位了!首先在窗体上画两个控件用vb.net计算阶乘:TextBox1和Button1
TextBox1用来输入需要计算那个数用vb.net计算阶乘的阶乘
双击Button1进入输入代码,代码如下
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
Dim Factorial As Integer = 1 '定义一个变量用来记录阶乘的结果
Dim count As Integer '定义一个变量用来记录需要计算那个数的阶乘
Dim i As Integer = 1 '定义一个数用来循环
count = Int(Val(Me.TextBox1.Text)) '把TextBox1的值赋值给count
Do While i = count '下面开始计算阶乘
Factorial = Factorial * i '计算阶乘
i= 1 '自增1
Loop
MessageBox.Show(Int(Val(Me.TextBox1.Text))"的阶乘是用vb.net计算阶乘:"Factorial, "完成", MessageBoxButtons.OK) '弹出计算结果
Catch ex As Exception '出错提示
MessageBox.Show(Err.Description, "出错了", MessageBoxButtons.OK, MessageBoxIcon.Error)
End Try
End Sub
用VB.NET编写一个程序 :编一求阶乘的函数f(n),主调程序求组合数的程序,分别调用f(n),用来计算组合数的值Private Sub Command1_Click()
Dim A, B, C
A = 10
B = 3
C = f(A) / (f(B) * f(A - B))
Print C
End Sub
Private Function f(n)
Dim I As Integer
f = 1
For I = 1 To n
f = f * I
Next I
End Function
程序高手来1~10的阶乘 。用VB.NETPublic Class Form1
Inherits System.Windows.Forms.Form#Region " Windows 窗体设计器生成的代码 "Public Sub New()
MyBase.New()'该调用是 Windows 窗体设计器所必需的 。
InitializeComponent()'在 InitializeComponent() 调用之后添加任何初始化End Sub'窗体重写 dispose 以清理组件列表 。
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub'Windows 窗体设计器所必需的
Private components As System.ComponentModel.IContainer'注意: 以下过程是 Windows 窗体设计器所必需的
'可以使用 Windows 窗体设计器修改此过程 。
'不要使用代码编辑器修改它 。
System.Diagnostics.DebuggerStepThrough() Private Sub InitializeComponent()
'
'Form1
'
Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
Me.ClientSize = New System.Drawing.Size(292, 266)
Me.Name = "Form1"
Me.Text = "Form1"End Sub#End RegionPrivate Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim s As String
Dim i As Integer, f As Long
For i = 0 To 10
f = Factor(i)
s = si"!="fvbNewLine
Next i
MsgBox(s)
End Sub
Function Factor(ByVal n As Integer) As Long
End Function
End Class
用VB.Net自定义过程,求阶乘!Private Function a%(b)
s = 1
For i = 1 To b
s = s * i
Next i
a = s
End Function
Private Sub Form_activate()
For i = 1 To 10
n = na(i)
Next i
Print n
End Sub
【用vb.net计算阶乘 vb10的阶乘的代码】用vb.net计算阶乘的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于vb10的阶乘的代码、用vb.net计算阶乘的信息别忘了在本站进行查找喔 。
推荐阅读
- 古代视频直播素材,古人直播
- jquery自定义事件监听事件吗的简单介绍
- 有什么软件能保存视频,有什么软件保存视频没有水印?
- vb.net绝对素数对 vbs 绝对值
- 海外销售如何推广自己,海外房产如何销售
- 如何用html5编写垂直虚线,html垂直居中的方法
- 电脑可直播,电脑可直播休闲游戏
- vb.net数组练习 vb6 数组
- go语言网页,go语言webview