摘要: //递归 //递归求 N 的阶乘 import java.util.Scanner; public class Test39{ public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int n 阅读全文
posted @ 2019-12-30 19:42 哈哈,呵呵,嘿嘿 阅读(182) 评论(0) 推荐(0)
摘要: //二维数组 public class Test61{ public static void main(String[] args) { int[][] arr={{1,2,3,4},{1,2,3},{1,2},{1}}; for(int i=0;i<arr.length;i++){ for(int 阅读全文
posted @ 2019-12-30 19:38 哈哈,呵呵,嘿嘿 阅读(191) 评论(0) 推荐(0)