public class LeftSymmetry{
/*
* 例如: 0
* 5 0 5
* 4 5 0 5 4
* .........
* 1 2 3 4 5 0 5 4 3 2 1
*
*/
public static void main(String[] args) {
int n=15;// n行
for(int i=n;i>=1;i--){
for(int j=i;j<=n;j++){
if(j==n){
System.out.print(0+"\t");
for(int z=n-1;z>=i;z--){
System.out.print(z+"\t");
}
}else{
System.out.print(j+"\t");
}
}
System.out.println();
}
}
}
温馨提示:内容为网友见解,仅供参考