摘要: import java.io.BufferedReader; import java.io.InputStreamReader; /* ConsoleReader 类 */ public class ConsoleReader { //获取并返回String类型 public static Stri 阅读全文
posted @ 2021-03-17 22:15 雪漠阳光 阅读(240) 评论(0) 推荐(0) 编辑
摘要: public class FileCopy2 { public static void main(String[] args) throws java.io.IOException { java.io.FileInputStream fileInputStream = new java.io.Fil 阅读全文
posted @ 2021-03-17 20:44 雪漠阳光 阅读(52) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public static int min(int a, int b, int c) { int m1 = a < b ? a : b; int m2 = m1 < c ? m1 : c; return m2; } public static void 阅读全文
posted @ 2021-03-17 20:33 雪漠阳光 阅读(257) 评论(0) 推荐(0) 编辑