摘要: 代码举例 public class ForDemo02 { public static void main(String[] args) { //循环打印 1~1000 之间能被 5 整除的数,并且每行打印3个 for (int i = 0; i <= 1000; i++){ if (i % 5 = 阅读全文
posted @ 2024-03-13 16:24 阿俊学JAVA 阅读(23) 评论(0) 推荐(0) 编辑