-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();
}
をそれは働きます!ありがとうございました.. :) –