Nest Do Until loop inside For loop (VB.net) : For Loop « Language Basics « ASP.Net

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » Language Basics » For Loop 
Nest Do Until loop inside For loop (VB.net)

<%@ Page Language="VB" %>
<script runat="server">
    Sub Button1_Click(sender As Object, e As EventArgs)
      Label1.Text = ""
    
      Dim dice1, dice2, score, counter As Integer
    
      For counter = to 10
        score = 0
    
        Do
          dice1 = Int(Rnd() 61
          dice2 = Int(Rnd() 61
          score = score + (dice1 + dice2)
          Label1.Text = Label1.Text & "Rolled a " & dice1 & " and a " & dice2 & "<br/>"
        Loop Until dice1 = And dice2 = 1
        score = score - 2
        Label1.Text = "Game " & counter.ToString() ": Total score would have been " & score & "<br/><br/>" & Label1.Text
      Next counter
    End Sub

</script>
<html>
<head>
</head>
<body>
    <form runat="server">
        <p>
            <asp:Button id="Button1" onclick="Button1_Click" runat="server" Text="Play the whole game 10 times"></asp:Button>
        </p>
        <p>
            <asp:Label id="Label1" runat="server"></asp:Label>
        </p>
    </form>
</body>
</html>

           
       
Related examples in the same category
1.Simple For loop (C#)
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.