摘要: 1.杨辉三角 public class 杨辉三角 { public static void main(String[] args) { //1.声明并初始化二维数组 int[][] yangHui = new int[10][]; //2.给数组的元素赋值 for(int i = 0;i < yan 阅读全文
posted @ 2021-07-19 22:39 Amoヽ柠檬 阅读(34) 评论(0) 推荐(0)