Objectivo
Escriba un programa en C# para pedir al usuario un número y luego muestre un rectángulo de 3 columnas de ancho y 5 filas de alto usando ese dígito. Por ejemplo:
Introduzca un dígito: 3
333
3 3
3 3
3 3
333
Ejemplo Ejercicio C#
Mostrar Código C#
using System; // Importing the System namespace to use Console functionalities
class Program
{
// Main method where the program execution begins
static void Main()
{
int digit; // Declaring a variable to store the digit entered by the user
// Asking the user to enter a digit and reading the input
Console.Write("Enter a digit: ");
digit = Convert.ToInt32(Console.ReadLine()); // Converting the input to an integer
// Printing the top row of the rectangle with the digit repeated three times
Console.WriteLine("{0}{0}{0}", digit); // Printing the digit three times in the first row
// Printing the middle rows of the rectangle, each with the digit followed by a space and then the digit again
for (int i = 0; i < 3; i++) // Loop to print three rows
{
Console.WriteLine("{0} {0}", digit); // Printing the digit with a space between them
}
// Printing the bottom row of the rectangle with the digit repeated three times
Console.WriteLine("{0}{0}{0}", digit); // Printing the digit three times in the last row
}
}
Salida
Enter a digit: 5
555
5 5
5 5
5 5
555
Código de Ejemplo Copiado!
Comparte este Ejercicio C# Sharp
¡Explora nuestro conjunto de ejercicios de programación C# Sharp! Estos ejercicios, diseñados específicamente para principiantes, te ayudarán a desarrollar una sólida comprensión de los conceptos básicos de C#. Desde variables y tipos de datos hasta estructuras de control y funciones simples, cada ejercicio está diseñado para desafiarte de manera gradual a medida que adquieres confianza en la codificación en C#.
Este ejercicio en C# te enseña a realizar conversiones entre unidades de temperatura. El programa solicita al usuario que ingrese una temperatura en grados Celsius y ...
Este ejercicio es una excelente forma de iniciarse en la programación en C#. En este programa, aprenderás cómo imprimir un mensaje en la pantalla utilizando C#. El pr...
Este ejercicio es una excelente manera de practicar las operaciones aritméticas básicas en C#. En este programa, aprenderás cómo realizar la operación de suma entre dos núme...
Este ejercicio es una excelente oportunidad para practicar la operación de división en C#. En este programa, aprenderás cómo dividir dos números, en este caso, 24 y 5...
Este ejercicio es ideal para aprender cómo realizar operaciones aritméticas complejas en C#. En este programa, se te pedirá que resuelvas varias operaciones matemáticas util...
Este ejercicio es perfecto para aprender cómo realizar una multiplicación en C# con números introducidos por el usuario. En este programa, el usuario tendrá que ingresar dos...