Escriba un programa que pida al usuario ingresar la altura y el ancho de un rectángulo y lo dibuje utilizando asteriscos
Respuestas a la pregunta
Contestado por
0
Console.WriteLine("Longitud del rectangulo");
int width = (int)Console.ReadLine();
Console.WriteLine("Altitud del rectangulo");
int height = (int)Console.ReadLine();
for(int y = 0; y < height; y++)
{
for(int x = 0; x < width; x++)
{
Console.Write("*");
}
Console.WriteLine("");
}
Console.Read();
int width = (int)Console.ReadLine();
Console.WriteLine("Altitud del rectangulo");
int height = (int)Console.ReadLine();
for(int y = 0; y < height; y++)
{
for(int x = 0; x < width; x++)
{
Console.Write("*");
}
Console.WriteLine("");
}
Console.Read();
Otras preguntas
Matemáticas,
hace 8 meses
Salud,
hace 8 meses
Matemáticas,
hace 8 meses
Religión,
hace 1 año
Castellano,
hace 1 año