Showing posts with label Basic VB. Show all posts
Showing posts with label Basic VB. Show all posts

8 Program on total number of vowels and consonants in VB.NET

Code: Module Module1     Dim a As Char     Dim b, v, c As Integer     Sub Main()         v = 0         c = 0         For b = 65 ...
Read More

6 Program in Visual Basic on Console Based Calculator Using Select Case Statement.

Code: Module Module1     Dim a, num1, num2, result As Integer     Dim b As Boolean     Sub Main()         Console.WriteLine()   ...
Read More