摘要: public class 杨辉三角 { public static void main(String args[]) { int x=10; int num[][] = new int[x][x]; for(int m=0;m<x;m++) for(int n=0;n<=m;n++) { if(n= 阅读全文
posted @ 2018-04-02 19:54 快门先生 阅读(562) 评论(0) 推荐(0) 编辑