解题思路:
注意事项:
格式错误(仅供参考)
参考代码:
import java.util.Scanner;
public class Main {
public static void main(String[] arg){
@SuppressWarnings("resource")
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
N = N + 1;
int[][] array = new int[N][N];
for(int i = 0;i<array.length;i++){
for(int k=N;k>0;k--){
System.out.print(" ");
}
for(int j=0;j<=i;j++){
array[i][j] = 0;
if(j==0||j==i){
array[i][j]=1;
}
else
array[i][j]=array[i-1][j]+array[i-1][j-1];
if(i!=j){
System.out.print(array[i][j]+" ");
}
else
System.out.print(array[i][j]+" ");
}
N--;
System.out.println();
}
}
}
0.0分
0 人评分
三角形 (C++代码)记忆化搜索浏览:1300 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:806 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:579 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1476 |
C语言程序设计教程(第三版)课后习题12.2 (C语言代码)浏览:831 |
C二级辅导-等差数列 (C语言代码)浏览:875 |
C语言训练-8除不尽的数 (C语言代码)浏览:1459 |
生日日数 (C语言代码)浏览:1558 |
整除的尾数 (C语言代码)浏览:842 |
筛排处理 (C语言代码)浏览:820 |