Grupo
Conceptos básicos control de flujo en C#
Objectivo
Cree un programa en C# para mostrar los números del 1 al 10 en la pantalla, usando "while".
Ejemplo de ejercicio en C#
Mostrar código C#
// First and Last Name: John Doe
using System;
namespace DisplayNumbersWhileLoop
{
class Program
{
// Main method to start the program execution
static void Main(string[] args)
{
// Declare a variable to store the current number
int number = 1;
// Start the while loop; it will run as long as number is less than or equal to 10
while (number <= 10)
{
// Display the current number on the screen
Console.WriteLine(number);
// Increment the number by 1
number++;
}
// Message when the loop ends
Console.WriteLine("Numbers from 1 to 10 have been displayed.");
// Wait for user input before closing the console window
Console.ReadKey(); // Keeps the console open until a key is pressed
}
}
}
Output
1
2
3
4
5
6
7
8
9
10
Numbers from 1 to 10 have been displayed.
Código de ejemplo copiado
Comparte este ejercicio de C#