насколько сильно я заблудился ,пока пытался решить эту задачу?
package com.javarush.task.pro.task04.task0405;
/*
Незаполненный прямоугольник
*/
public class Solution {
public static void main(String[] args) {
//напишите тут ваш код
int height = 0;
while (height < 1);
{
int width = 0;
while (width < 20);
{
System.out.print("Б");
}
}
while (height > 1 && height < 9);
{
int width = 0;
while (width < 1);
{
System.out.println("Б");
}
while (width > 1 && width < 19);
{
System.out.println(" ");
}
while (width >19 && width < 20);
{
System.out.println("Б");
}
while (height > 19 && height < 20);
{
while (width < 20);
{
System.out.print("Б");
}
}
}
}
}