欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java用for循环输出菱形

程序员文章站 2022-06-08 15:54:22
...

思路是建立两个等边三角形,上面的循环5次下面的循环4次,合并成一个菱形。

public static void main(String[] args) {
        for(int i = 1; i <=4 ; i++){
            for(int j = 1; j <= 4; j++){
                if(i + j < 5 ){
                    System.out.print(" ");
                }else{
                    System.out.print(" "+"*");

                }
            }

            System.out.println();
        }

        for(int i = 5; i >=1 ; i--){
            for(int j = 1; j <= 5; j++){
                if(i + j < 6 ){
                    System.out.print(" ");
                }else{
                    System.out.print("*"+" ");

                }
            }
            System.out.println();
        }

    }

运行截图
Java用for循环输出菱形

相关标签: 新手