您的位置:首页 > 编程语言 > VB

vb中几种循环

2016-04-28 16:52 405 查看
Private Sub Command1_Click()

Cls

Dim n As Integer

Dim s As Integer

Dim a(10) As Integer

n = 1

While n <= 10

a(n) = Int(Rnd * 1000)

n = n + 1

Wend

n = 1

While n <= 10

Print a(n)

n = n + 1

Wend

s = 0

n = 1

While n <= 10

s = s + a(n)

n = n + 1

Wend

Print s

End Sub

2.

Private Sub Command1_Click()

Dim i As Integer

Dim sum As Integer

Dim a As Integer

Do

Randomize

a = Int(Rnd * 1000)

sum = sum + a

i = i + 1

Loop Until i > 10

MsgBox "10个随机数得和:" & sum

End Sub

3.

Private Sub Command1_Click()

Dim i As Integer

Dim sum As Integer

Dim a As Integer

Do

Randomize

a = Int(Rnd * 1000)

sum = sum + a

i = i + 1

Loop while i <= 10

MsgBox "10个随机数得和:" & sum

End Sub

4.

Private Sub Command1_Click()

Dim i As Integer

Dim sum As Integer

Dim a As Integer

i = 1

Do While i <= 10

Randomize

a = Int(Rnd * 1000)

sum = sum + a

i = i + 1

Loop

MsgBox "10个随机数得和:" & sum

End Sub

5.

Private Sub Command1_Click()

Dim i As Integer

Dim sum As Integer

Dim a As Integer

i = 1

Do Until i > 10

Randomize

a = Int(Rnd * 1000)

sum = sum + a

i = i + 1

Loop

MsgBox "10个随机数得和:" & sum

End Sub

6.

Private Sub Command1_Click()

Cls

Print f(10)

End Sub

Private Function f(x As Integer) As Long

If x = 1 Then

f = x

Else

f = x + f(x - 1)

End If

End Function

7.

Private Sub Command1_Click()

Dim sum As Integer

Dim i As Integer

Dim a As Integer

sum = 0

For i = 1 To 10

Randomize

a = Int(1000 * Rnd)

sum = sum + a

Next

MsgBox "10个随机数得和:" & sum

End Sub

8.

Private Sub Command1_Click()

Cls

Dim n As Integer

Dim s As Integer

Dim a(10) As Integer

n = 1

While n <= 10

a(n) = Int(Rnd * 1000)

n = n + 1

Wend

n = 1

While n <= 10

Print a(n)

n = n + 1

Wend

s = 0

n = 1

For Each t In a

s = s + t

Next

Print s

End Snd
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: