上一页 1 ··· 7 8 9 10 11 12 13 14 下一页
摘要: `// 降序排序 import java.util.Arrays; public class Demo12{ public static void main(String[] args) { int[] ns = { 28, 12, 89, 73, 65, 18, 96, 50, 8, 36 }; 阅读全文
posted @ 2020-12-22 11:28 dog_IT 阅读(108) 评论(0) 推荐(0) 编辑
摘要: `import java.util.*; public class Demo13{ public static void main(String[] arg){ System.out.print("请输入学生数量:"); Scanner sc = new Scanner(System.in); in 阅读全文
posted @ 2020-12-22 11:15 dog_IT 阅读(216) 评论(0) 推荐(0) 编辑
摘要: `import java.util.*; public class Demo13{ public static void main(String[] arg){ int[] scores = {95,56,84,76,92}; int arrMax = 0; //遍历数组元素,将每个元素和arrMa 阅读全文
posted @ 2020-12-22 10:31 dog_IT 阅读(143) 评论(0) 推荐(0) 编辑
摘要: `import java.util.*; public class Demo13{ public static void main(String[] arg){ Scanner sc = new Scanner(System.in); System.out.println("请输入学生数量:"); 阅读全文
posted @ 2020-12-21 20:43 dog_IT 阅读(253) 评论(0) 推荐(0) 编辑
摘要: `import java.util.HashMap; public class Demo9{ public static void main(String[] args){ HashMap<Integer,String> m1 = new HashMap<>(); HashMap<Integer,S 阅读全文
posted @ 2020-12-14 17:20 dog_IT 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 一个数如果恰好等于它的因子之和,这个数就称为“完数”。例如1+2+3 = 6 编程:找出1000以内的所有完数(因子:除去这个数本身的其他约数) `public class Demo8{ public static void main(String[] args){ for(int i=1;i<=1 阅读全文
posted @ 2020-12-14 15:54 dog_IT 阅读(112) 评论(0) 推荐(0) 编辑
摘要: `public class Demo7{ public static void main(String[] args){ Outer outer = new Outer("wang"); outer.anonymHello(); } } class Outer{ public String name 阅读全文
posted @ 2020-12-13 16:18 dog_IT 阅读(476) 评论(0) 推荐(0) 编辑
摘要: `public class Demo{ public static void main(String[] args){ //记录质数个数 int count = 0; //获取当前时间 long start = System.currentTimeMillis(); //遍历100以内自然数 lab 阅读全文
posted @ 2020-12-13 14:53 dog_IT 阅读(223) 评论(0) 推荐(0) 编辑
摘要: `public class Demo3{ public static void main(String[] arg){ //获取当前时间距离1970-01-01 00:00:00的毫秒数 long start = System.currentTimeMillis(); //标识 i 是否被 j 除尽 阅读全文
posted @ 2020-12-06 16:18 dog_IT 阅读(226) 评论(0) 推荐(0) 编辑
摘要: public class Main{ public static void main(String[] args){ Person person = new Person(); String[] name = {"wang","tiantian"}; //将name对象的地址值复制一份传给了pers 阅读全文
posted @ 2020-09-09 11:31 dog_IT 阅读(2102) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 下一页