randomposts
Powered by Blogger.
Showing posts with label Console Code(VB). Show all posts

ASCII Value Program Code in Console Application VB

No comments
#ASCII Value Program Code Here.. Module Module1 /* Modile1 is an  name of the Console Module */     Public name(20) As Char     Public i, s As Integer     Sub Main()         System.Console.Write("Enter...Read more

EQUATION_EVOLUATION Programming Code in Console Application VB

No comments
# Here Programming Code is an EQUATION_EVOLUATION Module Module1 /*Module1 is an name of module*/     Public a, b, c, d As Integer     Sub Main()         System.Console.Write("Enter Value of A :")___(Don't...Read more

Odd-Even Programming Code in Console Application Visual Studio

No comments
#BELOW PROGRAMMING CODE ODD-EVEN CONSOLE  HERE... Module oddeven /* oddeven is an Module Name */     Dim i As Integer     Sub Main()         System.Console.Write("Enter Your Number:-")___(Don't...Read more

Leap Year Programming Code in Console Application on Visual Studio

No comments
# Leap Year Console Programming Code Here... Module leapyear   /*  Module Name*/     Sub Main()         Dim i As Integer         System.Console.Write("Enter...Read more

Prime Or Not Prime Number Code in Console Application on VB

No comments
#CODING HERE... Module Module1     Sub Main()         Dim i, j, x, y As Integer         System.Console.WriteLine("Enter No:")         x = System.Console.ReadLine        ...Read more