Grupo
Introducción a C#
Objectivo
Escriba un programa en C# que imprima "¡Hola, mundo!" en la consola.
Ejemplo de ejercicio en C#
Mostrar código C#
// The following is a simple C# program that displays a greeting message
using System;
namespace HelloWorld
{
class Program
{
// The Main method is the entry point of the program
static void Main(string[] args)
{
// Output the message to the console
Console.WriteLine("Hello, World!"); // This will display "Hello, World!" on the screen
// You can change the text inside the quotation marks to print a different message
Console.WriteLine("Welcome to C# Programming!"); // This prints another message
// Wait for the user to press a key before closing the console window
Console.ReadKey(); // This prevents the console window from closing immediately
}
}
}
Output
Hello, World!
Welcome to C# Programming!
Código de ejemplo copiado
Comparte este ejercicio de C#