代码:
package com.test.demos; public class Diamond { /** * 测试main方法 */ public static void main(String[] args) { printDiamond(10); // 10为对角线长度 } /** * 打印菱形实现方法 */ public static void printDiamond(int size) { size = (size / 2) * 2; // 菱形对角线两侧的宽度是相同的,所以对角线长度size必定是偶数,(size+1)即为行数和列数 int center = (size / 2); // 以左上角为坐标点(0,0),菱形中心点坐标(center,center) for (int i = 0; i <= size; i++) { // 行 for (int j = 0; j <= size; j++) { // 列 if (Math.abs(i - center) + Math.abs(j - center) == center) { System.out.print("* "); } else { System.out.print(" "); } } System.out.println(); } } }
时间: 2024-10-02 22:22:15