0
사용자가 입력 한 문자로 만든 정사각형을 만들고 크기를 선택합니다.사용자 입력 치수를 사용하여 문자를 사용하여 사각형 만들기
public class Square
{
public static void main(String[] args)
{
final byte MIN_SIZE = 2,
MAX_SIZE = 20;
byte size;
char fill;
Scanner input = new Scanner(System.in);
do
{
System.out.printf("Enter the size of the square (%d-%d): ",
MIN_SIZE, MAX_SIZE);
size = (byte)input.nextLong();
} while (size > MAX_SIZE || size < MIN_SIZE);
System.out.print("Enter the fill character: ");
fill = input.next().charAt(0);
//This is where the code which outputs the square would be//
}
}
다음과 같이 정사각형이 어떻게 보일지의 예 : 를 크기가 5와 채우기
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
문자가 정사각형이 아니므로 정사각형이 될 수 없습니다. –