• java常见打印*封装


    相信大家对这个不陌生,刚学java都会学过这个,

    public class Test {
        public static void main(String[] args) {
            System.out.println("  *");
            System.out.println(" ***");
            System.out.println("*****");
            System.out.println(" ***");
            System.out.println("  *");
        }
    }

    而今天我要拿这个来练习一下算法,将它封装一下,达到给定行数就能输出指定行数的方法。

    问题:奇偶数行之间的处理

    思路:1⃣️确定一行有多少列,比如行数n,n为奇数,则列数为n;n为偶数,则列数为n-1。

       2⃣️因为偶数行有两个中间行,而奇数只有一个奇数行,所有用一个数组将中间行记录下来。

       3⃣️当遍历的行数为中间行时,单独处理,全部为*。

       4⃣️当space为0时就是中间行,而第三步已经处理中间行了,所以要把space为0的过滤掉

    具体代码如下:

    private static void method2(int lineCount) throws Exception{
        if(lineCount<=0){
            throw new Exception("请输入大于0的数");
        }
        boolean isOdd=false;//true为奇数,false为偶数
        int columnCount;
        if((lineCount&1)==1){
            isOdd=true;
            columnCount=lineCount;
        }else{
            isOdd=false;
            columnCount=lineCount-1;
        }
        int[] middleLines=isOdd?new int[]{lineCount/2}:new int[]{lineCount/2-1,lineCount/2};
        for(int i=0;i<lineCount;i++){
            int space=Math.abs((lineCount-1)/2-i);
            for(int middleLine:middleLines){//如果为中间行,则布满所有的*
                if(middleLine==i){
                    for(int y=0;y<columnCount;y++){
                        System.out.print("*");
                    }
                    System.out.println("");
                    continue;//结束
                }
            }
            if(space!=0){
                for(int j=space;j>0;j--){//打完空格
                    System.out.print(" ");
                }
                for(int x=0;x<(columnCount-space*2);x++){
                    System.out.print("*");
                }
                System.out.println("");
            }
        }
    }

    如果大家有什么想法,欢迎指点!

  • 相关阅读:
    XHR——XMLHttpRequest对象
    原生JS弹出层详解,从简单到复杂
    php面向对象(OOP)编程完全教程
    css hack
    Ajax+php 详细分析 (没完整)
    Zend Studio 12 生成 WSDL
    PHP WebService/Soap接口生成方法。
    php soap客户端调试实例及调试
    简单数据结构之栈模拟
    经典算法之约瑟夫问题
  • 原文地址:https://www.cnblogs.com/pig-brother/p/7210811.html
Copyright © 2020-2023  润新知