1.分支结构
1.1 分支结构的概念
- 当需要进行条件判断并做出选择时,使用分支结构。
1.2 if分支结构
-
if语句格式
if(条件表达式) { 语句块; }
-
判断条件表达式是否成立
=> 若成立,则执行语句块;
=> 若不成立,则跳过语句块;
/*
编程使用if分支结构模拟网吧上网的过程
*/
import java.util.Scanner;
public class IfTest {
public static void main(String[] args) {
// 1.提示用户输入年龄信息并使用变量记录
System.out.println("请输入您的年龄:");
Scanner sc = new Scanner(System.in);
int age = sc.nextInt();
// 2.使用if分支结构判断是否成年并给出对应的提示
if(age >= 18) {
System.out.println("开心的浏览起了网页...");
}
// 3.打印一句话
System.out.println("美好的时光总是短暂的!");
}
}
案例题目:if分支结构查找最大值
- 提示用户输入两个整数,使用if分支结构找到最大值并打印出来。
/*
编程使用if分支结构查找两个整数中的最大值
*/
import java.util.Scanner;
public class IfMaxTest {
public static void main(String[] args) {
// 1.提示用户输入两个整数并使用变量记录
System.out.println("请输入两个整数:");
Scanner sc = new Scanner(System.in);
int ia = sc.nextInt();
int ib = sc.nextInt();
// 2.使用if分支结构找到最大值并打印
// 方式一:使用两个if分支结构可以找到最大值
/*
if(ia >= ib) {
System.out.println("最大值是:" + ia);
}
if(ia < ib) {
System.out.println("最大值是:" + ib);
}
*/
// 方式二:假设第一个数为最大值并记录 推荐方式 通用性
int max = ia;
if(ib > max) {
max = ib;
}
System.out.println("最大值是:" + max);
}
}
1.3 if else分支结构
-
if else语句格式
if(条件表达式) { 语句块1; } else { 语句块2; }
-
判断条件表达式是否成立
=> 若成立,则执行语句块1;
=> 若不成立,则执行语句块2;
/*
编程使用if else分支结构来模拟考试成绩查询的过程
*/
import java.util.Scanner;
public class IfElseTest {
public static void main(String[] args) {
// 1.提示用户输入考试成绩并使用变量记录
System.out.println("请输入您的考试成绩:");
Scanner sc = new Scanner(System.in);
int score = sc.nextInt();
// 2.使用if else分支结构判断考试成绩是否及格并给出对应的提示
if(score >= 60) {
System.out.println("恭喜您考试通过了!");
} else {
System.out.println("下学期来补考吧!");
}
// 3.打印一句话
System.out.println("世界上最遥远的距离不是生与死而是你在if我在else,似乎一直相伴却又永远分离!");
}
}
案例题目:if else分支结构判断负数和非负数判断负数和非负数
- 提示用户输入一个整数,使用if else分支结构判断该整数是负数还是非负数并打印。
- 使用if else分支结构判断该整数是正数、负数还是零。
/*
编程使用if else分支结构判断是否为负数和非负数
*/
import java.util.Scanner;
public class IfElseJudgeTest {
public static void main(String[] args) {
// 1.提示用户输入一个整数并使用变量记录
System.out.println("请输入一个整数:");
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
// 2.使用if else分支结构判断负数和非负数并打印
if(num < 0) {
System.out.println(num + "是负数!");
} else {
//System.out.println(num + "是非负数!");
// 针对目前的非负数再次判断是正数还是零
if(num > 0) {
System.out.println(num + "是正数!");
} else {
System.out.println(num + "是零!");
}
}
}
}
1.4 if else if else分支结构
-
if else if else语句格式
if(条件表达式1) { 语句块1; } else if(条件表达式2) { 语句块2; } else { 语句块n; }
-
判断条件表达式1是否成立
=> 若成立,则执行语句块1;
=> 若不成立,则判断条件表达式2是否成立
=> 若成立,则执行语句块2;
=> 若不成立,则执行语句块n;
/*
编程实现if else if else分支结构的使用,来模拟购买火车票的过程
*/
import java.util.Scanner;
public class IfElseifElseTest {
public static void main(String[] args) {
// 1.提示用户输入身份信息并使用变量记录
System.out.println("请输入您的身份信息:");
Scanner sc = new Scanner(System.in);
String str = sc.next();
// 2.使用if else if else分支结构判断身份信息并给出对应的提示
// 判断"军人"是否等于str,是否与str的数值相等
if("军人".equals(str)) {
System.out.println("请免费乘车!");
} else if("学生".equals(str)) {
System.out.println("请购买半价票!");
} else {
System.out.println("请购买全价票!");
}
// 3.打印一句话
System.out.println("坐上了火车去拉萨,去看那美丽的布达拉!");
}
}
案例题目1:个人所得税的计算方式
- 根据用户输入的薪水计算个人所得税并打印出来,其中个税起征点为:5000元,具体规则如下:
/*
编程使用if else if else分支结构来计算个人所得税
*/
import java.util.Scanner;
public class IfSalaryTest {
public static void main(String[] args) {
// 1.提示用户输入个人的薪水并使用变量记录
System.out.println("请输入您的薪水:");
Scanner sc = new Scanner(System.in);
// 局部变量:作用范围是从声明开始一直方法体结束
int salary = sc.nextInt();
// 2.使用if else if else分支结构判断薪水所在的范围并计算对应的个人所得税
// 个人所得税公式: 本月应纳税所得额 * 对应的税率 - 速算扣除数
double salaryPrice = 0.0;
if(salary <= 5000) {
System.out.println("无需纳税!");
}
else if(salary <= 8000) {
// 块变量:作用范围是从声明开始一直到当前语句块结束
//double salaryPrice = (salary - 5000) * 0.03;
//salaryPrice = (salary - 5000) * 0.03;
salaryPrice = (salary - 5000) * 0.03 - 0;
}
else if(salary <= 17000) {
//salaryPrice = (salary - 8000) * 0.1 + (8000 - 5000) * 0.03;
salaryPrice = (salary - 5000) * 0.1 - 210;
}
else if(salary <= 30000) {
//salaryPrice = (salary - 17000) * 0.2 + (17000 - 8000) * 0.1 + (8000 - 5000) * 0.03;
salaryPrice = (salary - 5000) * 0.2 - 1410;
}
// ...
// 3.打印最终的计算结果
System.out.println("最终的个人所得税是:" + salaryPrice);
}
}
案例题目2:出租车计费系统的实现
- 出租车计费方式:由里程钱数和等候时间钱数相加得出。
- 里程数前3公里13元,超过3公里到15公里部分每公里2元,15公里以上部分每公里3元。
- 等候时间每2分半1元,不足部分不要钱。
- 输入公里数和等候秒数,输出车费。
- 16公里,等候290秒,车费= 13 +(15-3)2 + (16-15)3 + 1 = 41
/*
编程使用if分支结构实现出租车计费系统的实现
*/
import java.util.Scanner;
public class IfTaxiTest {
public static void main(String[] args) {
// 1.提示用户输入公里数和等待的秒数并使用变量记录
System.out.println("请输入公里数和等待的秒数:");
Scanner sc = new Scanner(System.in);
int km = sc.nextInt();
int sec = sc.nextInt();
// 2.根据公里数计算对应的里程费并使用变量记录
int kmPrice = 0;
if(km <= 3) {
kmPrice = 13;
} else if(km <= 15) {
kmPrice = 13 + (km - 3) * 2;
} else {
kmPrice = 13 + (15 - 3) * 2 + (km - 15) * 3;
}
// 3.根据等待的秒数来计算对应的等待费并使用变量记录
int secPrice = sec / 150;
// 4.计算总费用并打印
int sumPrice = kmPrice + secPrice;
System.out.println("本次出租车的总费用是:" + sumPrice);
}
}
案例题目3:if分支结构实现等级判断
- 提示用户输入考试的成绩,使用if-else if-else分支结构判断所在等级并打印。
- [90 ~ 100] 等级A
- [80 ~ 89] 等级B
- [70 ~ 79] 等级C
- [60 ~ 69] 等级D
- [0 ~ 59] 等级E
/*
编程使用if else if else分支结构判断考试成绩所在的等级
*/
import java.util.Scanner;
public class IfScoreTest {
public static void main(String[] args) {
// 1.提示用户输入考试成绩并使用变量记录
System.out.println("请输入您的考试成绩:");
Scanner sc = new Scanner(System.in);
int score = sc.nextInt();
// 2.使用if else if else分支结构判断所在的等级并打印
// 90 / 10 = 9; 91 / 10 = 9; 92 / 10 = 9; 99 / 10 = 9; 100 / 10 = 10;
if(score >= 90 && score <= 100) { // case 9: case 10:
System.out.println("等级A");
} else if(score >= 80) { // case 8:
System.out.println("等级B");
} else if(score >= 70) { // case 7:
System.out.println("等级C");
} else if(score >= 60) { // case 6:
System.out.println("等级D");
} else { // default:
System.out.println("等级E");
}
}
}
1.5 switch case分支结构
-
switch case语句格式
switch(变量/表达式) { case 字面值1: 语句块1; break; case 字面值2: 语句块2; break; ... default:语句块n; }
-
计算变量/表达式的数值=> 判断是否匹配字面值1
=> 若匹配,则执行语句块1 => 执行break跳出当前结构
=> 若不匹配,则判断是否匹配字面值2
=> 若匹配,则执行语句块2 => 执行break跳出当前结构
=> 若不匹配,则执行语句块n
-
switch()中支持的数据类型有:byte、short、char以及int类型,从jdk1.5开始支持枚举类型,从jdk1.7开始支持String类型。
/*
编程使用switch case分支结构实现考试成绩的等级判断
*/
import java.util.Scanner;
public class SwitchScoreTest {
public static void main(String[] args) {
// 1.提示用户输入考试成绩并使用变量记录 0 ~ 100
System.out.println("请输入您的考试成绩:");
Scanner sc = new Scanner(System.in);
int score = sc.nextInt();
// 2.使用switch case分支结构实现考试成绩的等级判断
switch(score / 10) {
case 10: //System.out.println("等级A"); //break;
case 9: System.out.println("等级A"); break; // case穿透
case 8: System.out.println("等级B"); break;
case 7: System.out.println("等级C"); break;
case 6: System.out.println("等级D"); break;
default: System.out.println("等级E"); //break;
}
// 3.打印一句话
System.out.println("世界上最痴情的等待就是我当case你当switch,或许永远都不会选到自己!");
}
}
案例题目:switch case分支结构实现字符界面
- 使用switch case分支结构模拟以下菜单效果。
/*
编程使用switch case分支结构来模拟菜单的效果
*/
import java.util.Scanner;
public class SwitchMenuTest {
public static void main(String[] args) {
// 1.绘制字符界面
System.out.println(" 欢迎来到拉勾教育");
System.out.println("-------------------------------------");
System.out.print(" [1]学员系统 ");
System.out.println("[2]管理员系统");
System.out.println(" [0]退出系统");
System.out.println("-------------------------------------");
System.out.println("请选择要进入的系统:");
Scanner sc = new Scanner(System.in);
int choose = sc.nextInt();
// 2.使用switch case分支结构来模拟用户的选择并给出提示
switch(choose) {
case 1: System.out.println("正在进入学员系统..."); break;
case 2: System.out.println("正在进入管理员系统..."); break;
case 0: System.out.println("谢谢使用,下次再见!"); break;
default: System.out.println("输入错误,请重新选择!");
}
}
}
2.循环结构
2.1 循环结构的概念
- 在Java程序中若希望重复执行一段代码时,就需要使用循环结构。
- 任何复杂的程序逻辑都可以通过顺序、分支、循环三种程序结构实现。
2.2 for循环
-
for循环语句格式
for(初始化表达式; 条件表达式; 修改初始值表达式) { 循环体; }
-
执行初始化表达式=> 判断条件表达式是否成立
=> 成立则执行循环体=> 修改初始值表达式=> 判断条件是否成立
=> 若不成立,则循环结束
/*
编程实现for循环的使用,模拟玩游戏的过程
*/
public class ForTest {
public static void main(String[] args) throws Exception {
for(int i = 1; i <= 10; i++) { // i = i + 1 => i += 1 => i++
System.out.println("今晚吃鸡,大吉大利,正在进行第" + i + "场游戏...");
Thread.sleep(5000); // 表示模拟睡眠5秒的效果
System.out.println("本场游戏结束!\n\n\n");
}
System.out.println("该休息了,否则明天早上就要迟到了!");
}
}
案例题目1:for循环打印奇数
- 使用for循环打印1-100的所有奇数,使用三种方式。
/*
编程使用for循环实现1 ~ 100之间所有奇数的打印
*/
public class ForNumTest {
public static void main(String[] args) {
// 1.使用for循环打印1 ~ 100之间的所有奇数
// 方式一:根据奇数的概念进行打印
for(int i = 1; i <= 100; i++) {
// 若当前i的数值是奇数时则打印,否则不打印 奇数就是不能被2整除的数,也就是对2取余的结果不为0
if(i % 2 != 0) {
System.out.println("i = " + i);
}
}
System.out.println("---------------------------------------------------");
// 方式二:根据等差数列的概念来打印 每两个数据之间相差2
for(int i = 1; i <= 100; i += 2) {
System.out.println("i = " + i);
}
System.out.println("---------------------------------------------------");
// 方式三:根据通项公式的规则来打印 2*i-1
for(int i = 1; i <= 50; i++) {
System.out.println("i = " + (2 * i - 1));
}
}
}
案例题目2:for循环实现累加和
- 使用for循环实现累加:1+2+...+10000=?最后打印出来。
/*
编程使用for循环实现1 ~ 10000之间所有整数的累加和
*/
public class ForSumTest {
public static void main(String[] args) {
// 2.声明一个变量负责记录累加的结果
int sum = 0;
// 1.使用for循环打印1 ~ 10000之间的所有整数
for(int i = 1; i <= 10000; i++) {
// 打印后不换行
//System.out.print(i + " ");
// 将所有i的取值都累加到变量sum中
sum += i; // sum = sum + i;
}
// 专门用于换行
//System.out.println();
// 3.打印最终的累加结果
System.out.println("sum = " + sum);
}
}
案例题目3:for循环实现水仙花数的打印
-
使用for循环打印三位数中所有水仙花数。
所谓“水仙花数”即一个整数满足其值等于各个数位的立方和。
如:153是一个水仙花数,因为153=13+53+3^3。
/*
编程使用for循环打印三位数中的所有水仙花数
*/
public class ForWaterTest {
public static void main(String[] args) {
// 1.使用for循环打印所有的三位数
for(int i = 100; i <= 999; i++) {
// 3.拆分三位数中的各个数位上的数字
// 123 / 100 = 1; 123 % 100 => 23 / 10 = 2; 123 % 10 = 3;
int ia = i / 100; // 拆分百位数
int ib = i % 100 / 10; // 拆分十位数
int ic = i % 10; // 拆分个位数
// 2.针对每个三位数都要判断该数是否为水仙花数,若是则打印,否则不打印
// 判断该数是否等于各个数位的立方和
if((ia*ia*ia + ib*ib*ib + ic*ic*ic) == i) {
System.out.println("i = " + i);
}
}
}
}
2.3 continue关键字
- continue语句用在循环体中,用于结束本次循环而开始下一次循环。
案例题目:for循环打印1 ~ 20之间的所有整数
- 使用for循环打印1 ~ 20之间的所有整数,若遇到5的倍数则跳过不打印。
/*
编程实现continue关键字的使用
*/
public class ForContinueTest {
public static void main(String[] args) {
// 1.使用for循环打印1 ~ 20之间的所有整数
for(int i = 1; i <= 20; i++) {
// 若遇到5的倍数则跳过不打印该数,转而继续打印下一个数
if(0 == i % 5) {
continue; // 表示提前结束本次循环,继续下一次循环,也就是奔向了i++
}
System.out.println("i = " + i);
}
}
}