2021年9月20日

摘要: 1、while循环 题目1:输出1~100 package struct; public class WhileDemo01 { public static void main(String[] args) { //输出1~100 int i = 0; while (i<100){ i++; Sys 阅读全文

posted @ 2021-09-20 11:46 阿黎~ 阅读(16) 评论(0) 推荐(0) 编辑

摘要: 1、switch多选择结构 switch case switch语句中的变量类型可以byte、short 、 int 、 char 从Java SE 7开始,swtich 支持字符串string类型 package struct; public class SwitchDemo01 { public 阅读全文

posted @ 2021-09-20 11:33 阿黎~ 阅读(16) 评论(0) 推荐(0) 编辑

摘要: 1、if单选择结构(没有else) package struct; import java.util.Scanner; public class IfDemo1 { public static void main(String[] args) { Scanner scanner = new Scan 阅读全文

posted @ 2021-09-20 11:12 阿黎~ 阅读(18) 评论(0) 推荐(0) 编辑