java show方法打印空心矩形
时间: 2023-05-16 19:05:21 浏览: 95
my_Applet.rar_ImageShow.java_applet_climaterk2_showsfy
以下是 Java 中打印空心矩形的示例代码:
```
public class Main {
public static void main(String[] args) {
int rows = 5;
int columns = 10;
for (int i = 1; i <= rows; i++) {
for (int j = 1; j <= columns; j++) {
if (i == 1 || i == rows || j == 1 || j == columns) {
System.out.print("*");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
```
这段代码将打印一个 5 行 10 列的空心矩形,其中矩形的边框由星号组成,内部为空格。
阅读全文