摘要: public class ForDemo04 { public static void main(String[] args) { //1、我们先打印第一列,这个大家应该都会 //2、我们把固定的1再用一个循环包起来 //3、去掉重复项,i<=j //4、调整样式 for (int j = 1; j 阅读全文
posted @ 2023-10-28 20:32 版本答案 阅读(8) 评论(0) 推荐(0) 编辑
摘要: public class ForDemo01 { public static void main(String[] args) { int a = 1;//初始化条件 while (a<=100){//条件判断 System.out.println(a);//循环体 a+=2;//迭代 } Syst 阅读全文
posted @ 2023-10-28 20:29 版本答案 阅读(87) 评论(0) 推荐(0) 编辑
摘要: public class DowhileDemo01 { public static void main(String[] args) { int i = 0; int sum = 0; do{ sum = sum +i; i++; }while (i<=100); System.out.print 阅读全文
posted @ 2023-10-28 20:27 版本答案 阅读(10) 评论(0) 推荐(0) 编辑
摘要: public class whileDemo01 { public static void main(String[] args) { //输出1~100 int i = 0; while (i<100){ i++; System.out.println(i); //while先判断后执行。 } } 阅读全文
posted @ 2023-10-28 20:26 版本答案 阅读(17) 评论(0) 推荐(0) 编辑
摘要: public class switchDemo01 { public static void main(String[] args) { //case穿透 //switch 匹配一个具体的值 //break跳出循环 //default都没输出就输出这个属性的内容 char grade = 'B'; 阅读全文
posted @ 2023-10-28 20:24 版本答案 阅读(6) 评论(0) 推荐(0) 编辑
摘要: public class ifDemo04 { public static void main(String[] args) { //考试分数大于60就是及格,小于60分就不及格。 Scanner scanner = new Scanner(System.in); /* if 语句至多有1个else 阅读全文
posted @ 2023-10-28 20:23 版本答案 阅读(2) 评论(0) 推荐(0) 编辑
摘要: public class ifDemo02 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("请输入内容"); String s = sca 阅读全文
posted @ 2023-10-28 20:22 版本答案 阅读(2) 评论(0) 推荐(0) 编辑
摘要: public class shunxuDemo01 { public static void main(String[] args) { System.out.println("Hello1"); System.out.println("Hello2"); System.out.println("H 阅读全文
posted @ 2023-10-11 22:15 版本答案 阅读(3) 评论(0) 推荐(0) 编辑
摘要: class Demos01 { public static void main(String[] args){ //创建一个扫描器对象,用于接收键盘数据 Scanner scanner = new Scanner(System.in);//System.in是输入的意思 System.out.pri 阅读全文
posted @ 2023-10-11 22:14 版本答案 阅读(19) 评论(0) 推荐(0) 编辑
摘要: public class Demo12 { public static void main(String[]args){ // 与(and) 或(or) 非(取反) boolean a = true; boolean b = false; System.out.println("a && b:"+( 阅读全文
posted @ 2023-10-10 20:43 版本答案 阅读(2) 评论(0) 推荐(0) 编辑