尝试在下面的半球形打印模式,我已经添加了实际输出和预期输出以及我的代码,任何人都可以帮助实现该目的。提前致谢

我的密码

public class PatternHalfSphere {

    public static void main(String[] args) {
        int i,j;
        for(i = 1;i<=4;i++){
            System.out.println();
            for(int k=3;k>=i;k--){
                System.out.print(" "+"*"+" ");
            }
            for(j=1;j<=i;j++){

                System.out.print("   ");
            }
        }
        for(int k=0;k<=3;k++) {
            for(int l = 0; l<k;l++)
            {
                System.out.print(" "+"*"+" ");
            }
            System.out.println();
        }
    }


}


实际产量

 *  *  *
 *  *
 *

 *
 *  *
 *  *  *


预期产量

     *  *  *
     *  *
     *
     *  *
     *  *  *

最佳答案

快速而肮脏的解决方案

 public static void main(String[] args) {
        upperHalf(4);
        bottomHalf(4);
    }

    private static void upperHalf(int size) {
        for(int row = 0; row<size; row++){
            String rowContent = "";
            for(int col=0; col<size-row; col++){
                rowContent+= " *";
            }
            if(!rowContent.equals(""))
                System.out.println(rowContent);
        }
    }

    private static void bottomHalf(int size) {
        for(int row=2; row<=size; row++) {
            String rowContent = "";
            for(int col=0; col<row;col++)
            {
                rowContent+= " *";
            }
            System.out.println(rowContent);
        }
    }

07-24 17:50