摘要: 用for循环打印三角形 思路:把三角形拆分为一个空白倒三角形,两个直角三角形 代码如下 package com.lu.struct; public class TestDemo01 { public static void main(String[] args) { //打印三角形 5行 for ( 阅读全文
posted @ 2020-07-06 20:23 小卢传 阅读(383) 评论(0) 推荐(0) 编辑
摘要: Break与continue //break退出整个循环 //continue跳过本次尚未执行的操作 public class BreakDemo { public static void main(String[] args) { int i = 0; while (i<100){ i++; Sy 阅读全文
posted @ 2020-07-06 17:37 小卢传 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 增强for循环 Java5引入了一种主要用于数组或集合的增强型for循环 Java增强for循环语法格式如下: for(声明语句 : 表达式) { ​ //代码句子 } 声明语句:声明新的局部变量,该变量的类型必须和数组元素的类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等 表达式:表 阅读全文
posted @ 2020-07-06 17:13 小卢传 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 九九乘法表 //打印99乘法表 public class ForDemo04 { public static void main(String[] args) { //1.我们先打印第一列 //2.我们把固定的1再用一个循环包起来 //3.去掉重复项。 i <= j for (int j = 1; 阅读全文
posted @ 2020-07-06 17:05 小卢传 阅读(113) 评论(0) 推荐(0) 编辑
摘要: For循环 public class ForDemo01 { public static void main(String[] args) { int a = 1; //初始化条件 while (a<=100){ System.out.println(a); //循环体 a+=2; //迭代 } S 阅读全文
posted @ 2020-07-06 16:36 小卢传 阅读(148) 评论(0) 推荐(0) 编辑
摘要: While与do...While public class WhileDemo01 { public static void main(String[] args) { //输出1-100 int i = 0; while (i<100){ i++; System.out.println(i); } 阅读全文
posted @ 2020-07-06 15:53 小卢传 阅读(82) 评论(0) 推荐(0) 编辑
摘要: IF..else与switch语句记录 import java.util.Scanner; public class IfDemo03 { public static void main(String[] args) { //考试分数大于60就是及格,小于60分就不及格 Scanner scanne 阅读全文
posted @ 2020-07-06 15:30 小卢传 阅读(109) 评论(0) 推荐(0) 编辑
摘要: Scanner的进阶使用 scanner.nextInt()与scanner.nextDouble import java.util.Scanner; public class Demo04 { public static void main(String[] args) { Scanner sca 阅读全文
posted @ 2020-07-06 11:49 小卢传 阅读(252) 评论(0) 推荐(0) 编辑