Answer to Question #291980 in Visual Basic for Lam

Question #291980

Write a visual basic program to compute multiplication table of any integer

1
Expert's answer
2022-01-30T02:56:56-0500
Module Module1




    Sub Main()
        Console.Write("Enter number: ")
        Dim number As Integer = Double.Parse(Console.ReadLine())


        For i As Integer = 1 To number
            Console.WriteLine("{0} * {1} = {2}", i, number, (i * number))
        Next




        Console.ReadLine()
    End Sub




End Module

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS