杨辉三角 !
摘要:
public class Yanghui { public static int[][]yanghui(int n) { int mat[][]=new int [n][]; for(i=0;i<n;i++) { mat[i]=new int[n+1]; mat[i][0]=mat[i][i]=1; 阅读全文
posted @ 2018-04-01 21:19 本人是女汉子了解一下 阅读(104) 评论(0) 推荐(0) 编辑