杨辉三角

Posted Uncle Lei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了杨辉三角相关的知识,希望对你有一定的参考价值。

 1 /**
 2  * 杨辉三角
 3  * @author chunzai
 4  *
 5  */
 6 public class Test1 {
 7     public static void main(String[] args) {
 8         int a[][] = new int[7][];
 9         for(int i=0;i<7;i++){
10             a[i] = new int[i+1];
11             for(int j=i;j<6;j++){
12                 System.out.print(" ");
13             }
14             for(int k=0;k<=i;k++){
15                 
16                 if(k==0||k==i){
17                     a[i][k] = 1;
18                     
19                 }else{
20                     a[i][k] = a[i-1][k]+a[i-1][k-1];
21                     
22                 }
23                 System.out.print(a[i][k]+" ");
24             }
25             System.out.println();
26         }
27     }
28 }

 

以上是关于杨辉三角的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript笔试题(js高级代码片段)

绘制三角形的OpenGL程序给出了一个黄色的屏幕

Cg入门16:Fragment shader - 片段级光照

如何为每个 WebGL 三角形设置单独的颜色?

openGL 纹理05

为啥我的三角形在镶嵌后不显示? OpenGL