Ejercicio
Rectángulo V2
Objetivo
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
Código de Ejemplo
using System;
class Program
{
static void Main()
{
Console.Write("Enter a number: ");
int number = int.Parse(Console.ReadLine());
Console.Write("Enter the desired width: ");
int width = int.Parse(Console.ReadLine());
Console.Write("Enter the desired height: ");
int height = int.Parse(Console.ReadLine());
for (int i = 0; i < height; i++)
{
for (int j = 0; j < width; j++)
{
Console.Write(number);
}
Console.WriteLine();
}
}
}