[上一篇](https://blog.csdn.net/CHiN_951/article/details/134560372)
switch更擅长做等值判断
语法
switch(表达式){
case 值1:
//表达式和值1做比较,若相同则执行代码段;
代码段;
break;
case 值2:
//表达式和值2做比较,若相同则执行代码段;
代码段;
break;
case 值3:
//表达式和值3做比较,若相同则执行代码段;
代码段;
break;
…
default:
//没有符合条件的,执行default代码段;
代码段;
break;
}
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("用户请出拳:1.剪子;2.石头;3.布:");
int user = input.nextInt();
switch (user) {
case 1:
System.out.println("剪子");
break;
case 2:
System.out.println("石头");
break;
case 3:
System.out.println("布");
break;
default:
System.out.println("哥们");
break;
}
}
表达式的类型:byte short char int String(java7后引入) 枚举(java5后引入)
case后的值是不可以重复的
break的作用是中断代码块的(中断switch结构的),可以省略不写,不写发生贯穿
default默认的意思,和else类似,可以省略,可以出现在switch结构的任意位置
// switch
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("用户请出拳:1.剪子;2.石头;3.布:");
String user = input.next();
// 可以是String类型
switch (user) {
// 可以是switch中的任意位置
default:
System.out.println("哥们");
break;
case "剪子":
System.out.println("剪子");
// break;//中断当前switch的作用 没有则会发生贯穿
/*case "剪子":不可以重复
System.out.println("剪子");
break;*/
case "石头":
System.out.println("石头");
break;
case "布":
System.out.println("布");
break;//最后一个break可以省略,之下没有代码了
}
}
import java.util.Scanner;
public class Demo09 {
// if和switch结构是可以相互转换的
// if擅长的范围判断
// switch擅长的等值判断
/*编写程序 要求使用switch结构
* 90~100 显示结果A
* 80~89 显示结果B
* 70~79 显示结果C
* 60~69 显示结果D
* 否则 显示结果E
* */
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("请输入成绩:");
int score = input.nextInt();
switch (score / 10/*拿到十位数*/) {
case 10:
case 9:
System.out.println("A");
break;
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;
}
}
}
Math.random();
生成[0,1),0到1的随机数,包含0不包含1
若想生成某个范围的随机数,如下:[n,m] n是最小值,m是最大值
(int)( (m-n+1) * Math.random() ) + n
m-n+1:有多少个数 从0开始的,若想从n开始加n
public static void main(String[] args) {
double a = Math.random();
System.out.println(a);
// 生成100-999的随机数
int n = (int) ( (999-100+1) * Math.random() ) + 100;
System.out.println(n);
// 起始 []闭合区间(包含) ()开合区间(不包含)
// [0,1) ===> *900(数值的个数) ===>[0,900) ===> 强制类型转换为(int) ===> [0,899] ===> +100(最小值) ===>[100,999]
// 65~90
// [0,1) ===> *26 ===> [0,26) ===> (int) ===>[0,25] ===> +65 ===>[65,90]
}
重复的执行相同或相似的工作,当满足条件之后停止
作用:减少冗余(重复的内容)
循环的初始化
循环的判断条件
循环执行的工作内容
循环的变化
语法:
初始化
while(判断){
执行的工作;
变化;
}
// while
public static void main(String[] args) {
// System.out.println("从前有座山,山里有座庙,庙里有个老和尚,在给小和尚讲java,讲的是:");
// 讲100次上面的故事
// 初始值
int i = 1;
// 判断
while(i <= 100) {
// 循环工作
System.out.println("从前有座山,山里有座庙,庙里有个老和尚,在给小和尚讲java,讲的是:"+i);
// 循环的变化,可以停止掉循环结构
i++;
}
System.out.println("程序结束");
}
语法:
初始化
do{
执行的工作;
变化;
}while(判断);
// do...while
public static void main(String[] args) {
int i = 1;
// 定义和变量
int sum = 0;
do {
System.out.println(i);
// 每次都累加对应的值
sum += i;
i ++;
}while(i <= 100);
// 输出和的结果
System.out.println("和为:"+sum);
}
都在未知次数时使用
while:先判断,再执行,若条件不允许,则一次都不执行
do…while:先执行,再判断,若条件不允许,则会执行一次
public static void main(String[] args) {
int i = 10;
while(i < 10) {
System.out.println(i);
i++;
}
System.out.println("-------------------------");
int j = 10;
do {
System.out.println(j);
j++;
}while(j < 10);
}
一个变量可以在当前的大括号中使用
// main方法,主方法
public static void main(String[] args) {
int a = 10;
// while算是main的{}
while (a<100) {//while的{}也在main中
a ++;//可以使用
// b可以在while的{}中使用
int b = 10;
}
// b是在while{}中定义的,跳出了不可以使用
// System.out.println(b);
}
语法
for(①初始化;②判断;④变化){
③执行的工作;
}
for循环的执行顺序:
初始化只执行一次,
执行顺序:判断,执行工作,变化 ②③④重复的执行
// for
public static void main(String[] args) {
int sum = 0;
for(int i = 1;i<=100;i++/*每次循环的最后*/) {
System.out.println(i);
sum += i;
}
System.out.println(sum);
}