摘要: package array; public class demo01 { public static void main(String[] args) { int[] nums;//声明一个数组 nums = new int[10];//创建数组开始有空间 //赋值数组 nums[0]=1; num 阅读全文
posted @ 2022-05-10 23:14 回忆也交给时间 阅读(9) 评论(0) 推荐(0) 编辑
摘要: package www.nihao; import java.util.Scanner; public class counter { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); S 阅读全文
posted @ 2022-05-10 18:49 回忆也交给时间 阅读(18) 评论(0) 推荐(0) 编辑
摘要: package www.nihao; public class demo06 { public static void main(String[] args) { System.out.println(f(5)); } public static int f(int i){ if(i==1) ret 阅读全文
posted @ 2022-05-10 10:03 回忆也交给时间 阅读(18) 评论(0) 推荐(0) 编辑