Ejercicio
Edad
Objetivo
Escriba un programa en C# 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 de Ejemplo
using System; // Importing the System namespace to use Console functionalities
// Main class of the program
class Program
{
// Main method where the program execution begins
static void Main()
{
// Declaring a variable to store the user's age
int age;
// Asking the user to enter their age and reading the input
Console.Write("Please enter your age: ");
age = Convert.ToInt32(Console.ReadLine());
// Printing the response with the age entered by the user
Console.WriteLine("You look younger than {0}", age);
}
}