Thursday, 12 October 2017

User Input Console Application


1.User Input Console Application

Module Module2

    Sub Main()
        Dim d As Integer
        Dim e As Integer
        Dim sum As Integer
        Console.WriteLine("Enter the number First..>")
        d = Convert.ToInt32(Console.ReadLine())
        Console.WriteLine("Enter the number Second..>")
        e = Convert.ToInt32(Console.ReadLine())
        sum = d + e
        Console.WriteLine()
        Console.WriteLine(sum)
        Console.ReadLine()
    End Sub

End Module

https://www.youtube.com/channel/UCKLRUr6U5OFeu7FLOpQ-FSw/videos
User Input Console Application


User Input Console Application

0 comments

Post a Comment