Ejercicio
Edad
Objetivo
Escriba un programa en Visual Basic para preguntar al usuario por su edad (20, por ejemplo) y responda algo como "Parece menor de 20 años" (en lugar de 20, debe mostrar la edad que se ha ingresado).
Código
' Import the System namespace to use Console class
Imports System
Public Class Program
' Main subroutine, entry point of the program
Public Shared Sub Main()
' Ask the user to input their age
Console.Write("Please enter your age: ")
' Read the user's input and convert it to an integer
Dim age As Integer = Convert.ToInt32(Console.ReadLine())
' Respond with a message based on the user's age
Console.WriteLine("You look younger than " & age)
End Sub
End Class