Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Compile and Execute VB.Net Online

Module DataTypes

   Sub Main()
   Dim row,col,spaces As Integer
      for row=0 to 5 step 1
        for spaces=0 to row step 1
                console.write("*" &vbtab)
            next spaces 
        for col=5-row to 1 step -1
                console.write(row &vbtab)
            next col 
        console.writeline()
        next col
      Console.ReadKey()
   End Sub

End Module

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.