1. 程式人生 > >程式設計題day14

程式設計題day14

題目說明
蛇形矩陣是由1開始的自然數依次排列成的一個矩陣上三角形。
樣例輸入

5

樣例輸出

1 3 6 10 15

2 5 9 14

4 8 13

7 12

11

介面說明

原型
void GetResult(int Num, char * pResult);
輸入引數:
int Num:輸入的正整數N
輸出引數:
int * pResult:指向存放蛇形矩陣的字串指標
指標指向的記憶體區域保證有效
返回值:
void
輸入描述:
輸入正整數N(N不大於100)

輸出描述:
輸出一個N行的蛇形矩陣。
https://www.nowcoder.com/practice/649b210ef44446e3b1cd1be6fa4cab5e?tpId=37&&tqId=21258&rp=2&ru=/activity/oj&qru=/ta/huawei/question-ranking

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
        while(sc.hasNextInt()){
		int n=sc.nextInt();
		printRect(n);
        }
		sc.close();
	}
  public static void printRect(int n){
	  boolean one=false;
	  int a[][]=new
int[n][n]; for(int i=0;i<a.length;i++){ if(!one){ a[0][0]=1; one=true; }else{ a[i][0]=a[i-1][0]+i; } for(int j=1;j<a[i].length-i;j++){ a[i][j]=a[i][j-1]+i+j+1; } } for(int i=0;i<a.length;i++){ for(int j=0;j<a[i].length-i;j++){ if
(j<n-1){ System.out.print(a[i][j]+" "); }else{ System.out.print(a[i][j]); } } System.out.println(); } } }