Grupo
Introducción a C#
Objectivo
El objetivo de este ejercicio es desarrollar un programa en C# que pregunte al usuario su edad y muestre un mensaje con la edad introducida en una respuesta personalizada.
Escriba un programa en C# que pregunte al usuario su edad (p. ej., 20) y responda con algo como "Pareces menor de 20" (la edad introducida por el usuario debe mostrarse en lugar de "20").
Ejemplo de ejercicio en C#
Mostrar código C#
// First and Last Name: John Doe
using System;
namespace AgeResponse
{
class Program
{
// The Main method is where the program execution begins
static void Main(string[] args)
{
// Declare a variable to store the user's age
int age;
// Prompt the user to enter their age
Console.Write("Enter your age: ");
age = Convert.ToInt32(Console.ReadLine()); // Read and convert the input to an integer
// Display the response message with the user's age included
Console.WriteLine("You look younger than {0}!", age);
// Wait for the user to press a key before closing the console window
Console.ReadKey(); // This keeps the console window open until a key is pressed
}
}
}
Output
Enter your age: 25
You look younger than 25!
Código de ejemplo copiado
Comparte este ejercicio de C#