2020年5月7日 星期四

vb.net Do Loop使用 [Do Loop]


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim Porcion As Integer = 503

        Do

            If Porcion = 0 Then

                Exit Do

            Else

                If Porcion < 100 Then

                    Porcion = 0

                Else

                    Porcion = Porcion - 30

                End If

            End If

        Loop

    End Sub

沒有留言:

張貼留言