Objectivo
Escribe un programa en C# que pida un número, un ancho y un alto y muestre un rectángulo de ese ancho y esa altura, usando ese número para el símbolo interno, como en este ejemplo:
Introduzca un número: 4
Introduzca el ancho deseado: 3
Introduzca la altura deseada: 5
444
444
444
444
444
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()
{
// Prompt the user to enter the number to display inside the rectangle
Console.Write("Enter a number: ");
int number = int.Parse(Console.ReadLine()); // Reading the number entered by the user
// Prompt the user to enter the desired width of the rectangle
Console.Write("Enter the desired width: ");
int width = int.Parse(Console.ReadLine()); // Reading the width entered by the user
// Prompt the user to enter the desired height of the rectangle
Console.Write("Enter the desired height: ");
int height = int.Parse(Console.ReadLine()); // Reading the height entered by the user
// Loop to print the rectangle row by row
for (int i = 0; i < height; i++) // Loop runs for the height of the rectangle
{
// Loop to print the number across the width of the rectangle
for (int j = 0; j < width; j++) // Loop runs for the width of the rectangle
{
Console.Write(number); // Display the number at the current position
}
Console.WriteLine(); // Move to the next line after printing one row of the rectangle
}
}
}
Salida
Enter a number: 7
Enter the desired width: 5
Enter the desired height: 3
77777
77777
77777
Código de Ejemplo Copiado!
Comparte este Ejercicio C# Sharp