用java编写小程序打印“金字塔”
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用java编写小程序打印“金字塔”相关的知识,希望对你有一定的参考价值。
package demo1; public class Demo { public static void main(String[] args) { int a=4; for(int i=1;i<=a;i++) { for(int k=1;k<=a-i;k++) { System.out.print(" "); } for(int j=1;j<=(i-1)*2+1;j++) { System.out.print("*"); } System.out.println(); } } }
*
***
*****
*******
package demo1; public class Demo { public static void main(String[] args) { int a=4; for(int i=1;i<=a;i++) { for(int k=1;k<=a-i;k++) { System.out.print(" "); } for(int j=1;j<=(i-1)*2+1;j++) { if(i==1||i==a) { System.out.print("*"); } else { if( j==1||j==(i-1)*2+1) { System.out.print("*"); } else { System.out.print(" "); } } } System.out.println(); } } }
*
* *
* *
*******
以上是关于用java编写小程序打印“金字塔”的主要内容,如果未能解决你的问题,请参考以下文章