Programming Code Tricks

All Languages Secrets

  • Increase font size
  • Default font size
  • Decrease font size
Home
C Programming Code Tricks


Browser not compatible

E-mail Print PDF

if your browser in not full compatible with this site ..

you can access  full site using   site-map.

SITEMAP

c code

cpp

Last Updated on Sunday, 22 August 2010 16:21
 

vb.net module | Console.WriteLine | Console.ReadLine()

E-mail Print PDF

vb.net module

Module Module1
Dim s As String
Sub Main()
s = greet()
Console.WriteLine(s)
Console.ReadLine()
End Sub

End Module

Last Updated on Sunday, 22 August 2010 17:54
 

Console.WriteLine | vb.net | draw table using code

E-mail Print PDF

Console.Write-line | vb.net | draw table  using code

Module Module1
Dim i, j, n As Integer

Sub Main()
Console.WriteLine("How many line do u want:")
n = Console.ReadLine()
For i = 1 To n
For j = 1 To n
Console.Write(j)
Next
n = n - 1
Console.WriteLine()
Next
Console.ReadLine()
End Sub

End Module

Last Updated on Sunday, 22 August 2010 17:51
 
  • «
  •  Start 
  •  Prev 
  •  1 
  •  2 
  •  3 
  •  4 
  •  5 
  •  6 
  •  7 
  •  8 
  •  9 
  •  10 
  •  Next 
  •  End 
  • »


Page 1 of 122

contact:devlibra9@gmail.com