程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> 本科 應聘 雲計算-陣列打印,給定一個正整數n,打印2*n行,如果n=4,則打印如下

本科 應聘 雲計算-陣列打印,給定一個正整數n,打印2*n行,如果n=4,則打印如下

編輯:編程解疑
陣列打印,給定一個正整數n,打印2*n行,如果n=4,則打印如下

1
2*3
4*5*6
7*8*9*10
7*8*9*10
4*5*6
2*3
1
請完成以下方法體實現上述功能
public void printNum(int n){

}

最佳回答:


你可以參考下

 public class printmatrix {

    public static int helper[] = new int[100];

    public static void calc(int n){
        if(n==1){
            helper[n]=1;
            return;
        }
        if(helper[n-1]==0)
            calc(n-1);
        helper[n] = helper[n-1]+n;
    }

    public static void printNum(int n){
        if(helper[n]==0){
            calc(n);
        }
        String[] strs = new String[n+1];
        int row = 1;
        for(;row<=n;row++){
            String str = new String();
            for(int i=helper[row-1]+1;i<=helper[row];i++){
                if(!str.equals(""))str+='*';
                str += i;
            }
            strs[row] = str;
        }
        for(String str : strs){
            if(str==null)continue;
            System.out.println(str);
        }
        for(int i=n;i>0;i--){
            System.out.println(strs[i]);
        }
    }

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        printmatrix.printNum(4);
    }

}
zj_maddog
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved