摘要:
public class common{ public static void main(String[],args) { common cc=new common(); cc.commy(15,19); cc.commb(15,19); } public void commy(int a,int 阅读全文
摘要:
package 杨辉三角; public class 杨辉三角{ public static void main(String[] args) { int a[][]=new int[5][]; for(int i=0;i<a.length;i++) { a[i]=new int[i+1]; for 阅读全文