摘要: 练习1:计算0到100之间的奇数和偶数的和: package struct; public class ForDemo02 { public static void main(String[] args) { //练习1:计算0到100之间的奇数和偶数的和 int oddSum = 0; int e 阅读全文
posted @ 2021-11-02 22:59 freedomAndWind 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 打印顺序 package struct; public class ShunXuDemo01 { public static void main(String[] args) { System.out.println("hello1"); System.out.println("hello2"); 阅读全文
posted @ 2021-11-02 22:24 freedomAndWind 阅读(23) 评论(0) 推荐(0) 编辑
摘要: package scanner; import java.util.Scanner; public class Demo01 { public static void main(String[] args) { //创建一个扫描器对象,用于接收键盘数据 Scanner scanner = new S 阅读全文
posted @ 2021-11-02 15:45 freedomAndWind 阅读(118) 评论(0) 推荐(0) 编辑