Ejercicio
Rectángulo V3
Objetivo
Escriba un programa de java para pedir al usuario su nombre y un tamaño, y muestre un rectángulo hueco con él:
Introduce tu nombre: Yo
Tamaño de entrada: 4
YoYoYoYoYo
Yo____Yo
Yo____Yo
YoYoYoYoYo
(nota: los guiones bajos _ no deben mostrarse en la pantalla; el programa debe mostrar espacios en blanco dentro del rectángulo)
Código de Ejemplo
import java.util.*;
public class Main
{
public static void main(String[] args)
{
int n, width, height;
int row, column;
System.out.print("Enter a number: ");
n = Integer.parseInt(new Scanner(System.in).nextLine());
System.out.print("Enter the desired width: ");
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 < height; row++)
{
for (column = 0; column < width; column++)
{
System.out.print(n);
}
System.out.println();
}
}
}