Grupo
Conceptos básicos control de flujo en C#
Objectivo
Escriba un programa en C# que solicite un número, ancho y alto, y muestre un rectángulo con ese ancho y alto, usando ese número como símbolo interno, como se muestra en el siguiente ejemplo:
Ingrese un número: 4
Ingrese el ancho deseado: 3
Ingrese el alto deseado: 5
444
444
444
444
444
Ejemplo de ejercicio en C#
Mostrar código C#
using System;
namespace RectangleDisplay
{
class Program
{
static void Main(string[] args)
{
// Prompt the user for input: symbol, width, and height of the rectangle
Console.Write("Enter a number (symbol): ");
int number = int.Parse(Console.ReadLine()); // Store the number entered by the user for the symbol
Console.Write("Enter the desired width: ");
int width = int.Parse(Console.ReadLine()); // Store the width of the rectangle
Console.Write("Enter the desired height: ");
int height = int.Parse(Console.ReadLine()); // Store the height of the rectangle
// Use a nested loop to print the rectangle
// Outer loop controls the height (number of rows)
for (int i = 0; i < height; i++)
{
// Inner loop controls the width (number of symbols per row)
for (int j = 0; j < width; j++)
{
// Print the symbol for each position in the row
Console.Write(number);
}
// After each row is printed, move to the next line
Console.WriteLine();
}
}
}
}
Output
Enter a number (symbol): 4
Enter the desired width: 3
Enter the desired height: 5
444
444
444
444
444
Código de ejemplo copiado
Comparte este ejercicio de C#