import java.util.*; public class Ge { public static void main(String[] args){ int row=7; for(int i=-row;i<=row;i++) { int a=(i<0)?-i:i; for (int j=0;j<=row*2 ;j++ ) { if(a==j || a==row*2-j) {System.out.print("*");} else{System.out.print(" "); } } System.out.println(); } } }
时间: 2024-12-07 02:57:36