打印金字塔的数字java

打印金字塔的数字java,第1张

package xuexi;

public class ss {
    public static void main(String[] args) {

        int i;

        for (int h = 0; h <= 7; h++) {
            for(int s=7-h;s>0;s--)
            {System.out.print("     ");}
            int j = 1;
            for (int k = 0; k <= h; k++) {

                System.out.printf("%5d",j);
                j = j * 2;


            }
              int g = j/2;
            while(g!=1) {
                g = g /2;
                System.out.printf("%5d",g);

            }

            System.out.println();
        }


    }
}

 

将包名换一下即可使用哦

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/2889725.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-14
下一篇 2022-09-14

发表评论

登录后才能评论

评论列表(0条)

保存