-2
중간에 구멍이있는 직사각형을 만들고 싶습니다. wallThick을 어떻게 가져올 수 있습니까? width, height, wallThick을 정의하지만 방형을 작성합니다. 나는 어떤 구멍도 누를 수 없다. 당신은 ... 모두 ... 감사합니다 제발 도와 수java로 인쇄 사각형 (중앙에 구멍이 있습니다)
if (width <= 0 || height <= 0 || wallThick <= 0)
{
System.out.println("Invalid value! Please enter positive integer.");
}else {
for (y = 1; y <= height; y++)
{
for(x = 1; x <= width; x++)
{
System.out.print("*");
}
System.out.println();
}
! 모든 주셔서 감사합니다 .. :) –