杨辉三角的JAVA实现
摘要:
public class yanghui_triangle{ public static void main(String[] args){ int[][] n = new int[10][21]; n[0][10] = 1; for(int i=1;i<10;i++) for(int j=10-i 阅读全文
posted @ 2018-03-31 21:30
xiangweilu
阅读(140)
评论(0)
推荐(0)
浙公网安备 33010602011771号