一路繁花似锦绣前程
失败的越多,成功才越有价值

导航

 

2020年8月12日

摘要: public class Usuallyclass { public static void main(String[] args) { // 控制台输入 // Scanner scanner = new Scanner(System.in); // int i = scanner.nextInt( 阅读全文
posted @ 2020-08-12 22:11 一路繁花似锦绣前程 阅读(123) 评论(0) 推荐(0) 编辑
 
摘要: public class BinarySearch { public static void main(String[] args) { int[] arr = {10, 20, 30, 40, 50, 60, 70, 80, 90}; int num = 70; System.out.printl 阅读全文
posted @ 2020-08-12 12:19 一路繁花似锦绣前程 阅读(110) 评论(0) 推荐(0) 编辑
 
摘要: import java.io.File; public class Recursion { public static void main(String[] args) { File file = new File("E:\\study\\JAVA全套整理"); RecursionMethods(f 阅读全文
posted @ 2020-08-12 11:01 一路繁花似锦绣前程 阅读(82) 评论(0) 推荐(0) 编辑
 
摘要: import java.util.Arrays; public class Arrsort { public static void main(String[] args) { int[] arr = {5, 8, 3, 4, 9, 2, 7, 6, 1}; System.out.println(A 阅读全文
posted @ 2020-08-12 10:19 一路繁花似锦绣前程 阅读(141) 评论(0) 推荐(0) 编辑