上一页 1 2 3 4 5 6 7 ··· 14 下一页
  2025年5月12日
摘要: 编程题:25 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String num = s 阅读全文
posted @ 2025-05-12 23:25 Swishy 阅读(4) 评论(0) 推荐(0)
摘要: 编程题:24 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String[] parts 阅读全文
posted @ 2025-05-12 23:24 Swishy 阅读(5) 评论(0) 推荐(0)
摘要: 本月读后感: 再读《程序员修炼之道 —— 从小工到专家》,“反馈” 这一概念牢牢抓住我的目光。书中说,反馈是软件开发的基石,无论是编译错误提示,还是用户对产品的使用反馈,都在指引我们前行。 在代码调试中,我曾因忽视编译器的警告,让小问题积累成大故障。现在明白,这些反馈是系统在 “说话”,提醒我们代码 阅读全文
posted @ 2025-05-12 23:23 Swishy 阅读(7) 评论(0) 推荐(0)
摘要: 编程题:19 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanne 阅读全文
posted @ 2025-05-12 23:23 Swishy 阅读(4) 评论(0) 推荐(0)
摘要: 编程题:20 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int N = scanne 阅读全文
posted @ 2025-05-12 23:23 Swishy 阅读(5) 评论(0) 推荐(0)
摘要: 编程题:22 T = int(input()) 初始化乌龟和兔子的距离、兔子的时间统计及休息标记 turtle_distance = T * 3 rabbit_distance = 0 rabbit_time = 0 resting = False rest_time = 0 while rabbi 阅读全文
posted @ 2025-05-12 23:23 Swishy 阅读(7) 评论(0) 推荐(0)
摘要: 编程题:23 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String num = s 阅读全文
posted @ 2025-05-12 23:23 Swishy 阅读(6) 评论(0) 推荐(0)
摘要: 在以往的软件开发中,我对版本控制的重要性认识不足,使用版本控制系统时操作不规范。在参与一个开源项目的协作开发时,我经常不按照分支管理规范进行操作,随意在主分支上进行代码修改和提交;提交代码时不写详细的提交信息,只简单标注 “修改” 等模糊内容。这导致其他开发者难以了解代码的变更情况,在合并代码时频繁 阅读全文
posted @ 2025-05-12 23:23 Swishy 阅读(11) 评论(0) 推荐(0)
摘要: 编程题:18 import java.util.Scanner; public class Main { // 计算多项式在 x 处的值 public static double polynomial(double a3, double a2, double a1, double a0, doubl 阅读全文
posted @ 2025-05-12 23:22 Swishy 阅读(4) 评论(0) 推荐(0)
摘要: 编程题:17 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int N = scanne 阅读全文
posted @ 2025-05-12 23:22 Swishy 阅读(4) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 14 下一页