打印漏图案
Posted 2226016500
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打印漏图案相关的知识,希望对你有一定的参考价值。
public class hh {
public static void main(String[] args) {
for (int i = 2; i >=-2; i--) {//打印行数
for (int j = 0; j <= 2-Math.abs(i); j++) {//打印该行的前边
System.out.print(" ");
}
for (int j = 0; j < Math.abs(i)*2+1; j++) {//打印改行的后边
System.out.print("*");
}
System.out.println();
}
}
}
*****
***
*
***
*****
以上是关于打印漏图案的主要内容,如果未能解决你的问题,请参考以下文章