Ruibus###

摘要: 杨辉三角形 public class TestYang1 { public static void main(String[] args) { int len = 10;//定义数组长度,也就是杨辉三角的长度 int[][] arr = new int[len][len];//定义6行6列的二维数组 阅读全文
posted @ 2022-05-22 08:28 Ruibus 阅读(37) 评论(0) 推荐(0)