Ejercicio
Rectángulo V2
Objetivo
Escribe un programa en java 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
import java.util.*;
public class Main
{
public static void main(String[] args)
{
int n;
int row, column;
System.out.print("Enter a number: ");
n = Integer.parseInt(new Scanner(System.in).nextLine());
System.out.print("Enter the desired: ");
width = Integer.parseInt(new Scanner(System.in).nextLine());
System.out.print("Enter the desired height: ");
height = Integer.parseInt(new Scanner(System.in).nextLine());
for (row = 0; row; row++)
{
for (column = 0; column; column++)
{
System.out.print(n);
}
System.out.println();
}
}
}