Wednesday, July 7, 2010

Console Application

Console Applications are command-line oriented applications that allow us to read characters.

For example,
console.writeline("This is my first console Application")

here some examples for you:



write this code in your console application:

dim a, b, c as integer
console.writeline("Values of A")
a = console.readline()
console.writeline("Values of B")
b = console.readline()
c= a+b
console.writeline(c)
console.readline()

No comments: