概述
if单分支选择结构
public static void main(String[] args) {
int i = (int) (Math.random()*6);
if (i >3){
System.out.println("值大于3");
}
System.out.println("number:"+i);
}
if双分支
public static void main(String[] args) {
int r = 3;
double PI = 3.14;
double area = PI*r*r;
double length = 2*PI*r;
if(area >= length){
System.out.println("面积大于等于周长");
} else {
System.out.println("周长大于等于面积");
}
}
if多分支
public static void main(String[] args) {
int age = (int)(Math.random()*100);
if (age < 10){
System.out.println("儿童");
} else if (age < 20){
System.out.println("少年");
} else if (age < 30){
System.out.println("青年");
} else if (age < 50){
System.out.println("中年");
} else if (age < 70){
System.out.println("老年");
} else {
System.out.println("耄耋");
}
}
switch多分支选择结构
注意:
1 每个case模块中要添加break,防止多次匹配
2、如果多个case中处理的逻辑代码块的功能一致,可以考虑只在最后添加一次处理
3、default表示默认选项,当所有的case不匹配的时候,会执行此选项
4、default可有可没有
public static void main(String[] args) {
int random = (int)(Math.random()*26);
char ch = (char) ('a' + random);
switch (ch){
case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
System.out.println("元音:"+ch);
break;
case 'y':
System.out.println("半元音:"+ch);
break;
case 'w':
System.out.println("半元音:"+ch);
break;
default:
System.out.println("辅音:"+ch);
}
}
比较switch与多重if选择结构
相同点:都是用来处理多分支条件的结构
不同点:
switch只能处理等值条件判断的情况,而且必须是整型变量或者字符型变量或者字符串(1.7之后)
多重if结构没有switch选择结构的限制,特别适合某个变量处于某个连续区间时的情况
循环
while
do-while循环
![上传中...]()
for循环
for(初始化1;条件判断2;步进器4){
逻辑处理3
}
使用for循环的好处:代码简洁;变量初始化的时候,for循环的作用域仅仅是当前for循环结构,while循环的作用域是从变量的定义开始到整个方法结束
跳转语句 break和continue
注意:break跳出循环,当包含多层循环的时候,break只能跳出内层循环,无法跳出外层循环;
如果需要从内层循环之间跳出,使用return
对比break和continue
跳转语句 return
基本用途:
1、返回方法的返回值
2、终止当前程序
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。