- package Month08;
- /*
- * 打印菱形
- *
- */
- public class Day16 {
- public static void main(String[] args) {
- print(1, 1);// 打印一个菱形
- print(1, 2);// 打印两个菱形
- print(2, 2);// 打印相邻四个菱形
- }
- public static void print(int x, int y) {// 打印x乘以y个菱形的方法
- String[][] str1 = {
- { " ", " ", " ", " ", "*", " ", " ", " ", " " },
- { " ", " ", " ", "*", "*", "*", " ", " ", " " },
- { " ", " ", "*", "*", "*", "*", "*", " ", " " },
- { " ", "*", "*", "*", "*", "*", "*", "*", " " },
- { "*", "*", "*", "*", "*", "*", "*", "*", "*" },
- { " ", "*", "*", "*", "*", "*", "*", "*", " " },
- { " ", " ", "*", "*", "*", "*", "*", " ", " " },
- { " ", " ", " ", "*", "*", "*", " ", " ", " " },
- { " ", " ", " ", " ", "*", " ", " ", " ", " " }, };
-
-
-
- for (int x1 = 1; x1 <= x; x1++) {
- for (int i = 0; i < str1.length; i++) {
- for (int y1 = 1; y1 <= y; y1++) {
- for (int j = 0; j < str1[i].length; j++) {
- System.out.print(str1[i][j]);
- }
- }
- System.out.println();
- }
- }
- }
- }
复制代码 |