Use of {0} and comments Learn programming Visual Basic (VB.net)



Lesson:

First contact with Visual Basic (VB.net)


Exercise:

Use of {0} and comments


Objetive:

Write a Visual Basic (VB.net) program to ask the user for three numbers and display their multiplication. The first line must be a comment with your name and surname. It MUST look as follows:

// Your Name and Surname
Enter the first number to multiply:
12
Enter the second number to multiply:
23
Enter the third number to multiply:
2


Code:

Imports System
Public Class exercise6
    Public Shared Sub Main()
        Dim number1, number2, number3 As Integer
        Console.Write("Enter the first number to multiply: ")
        number1 = Convert.ToInt32(Console.ReadLine())
        Console.Write("Enter the second number to multiply: ")
        number2 = Convert.ToInt32(Console.ReadLine())
        Console.Write("Enter the third number to multiply: ")
        number3 = Convert.ToInt32(Console.ReadLine())
        Dim result As Integer = number1 * number2 * number3
        Console.WriteLine("Result: {0} x {1} x {2} = {3}", number1, number2, number3, result)
    End Sub
End Class



Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.