Java学习之路--循环语句中标签的continue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* 测试带标签的continue
* @author 葛宇
*/
package 控制语句;

//Java中保留了goto关键字但并不允许使用goto语句
public class TestLableContinue {
public static void main(String[] args) {

//打印101到150之间所有质数
outer:for(int i=101;i<=150;i++) {
for(int j=2;j<i/2;j++) {
if(i%j==0) {
continue outer;
}
}
System.out.println(i+" ");
}

}
}

Java学习之路--循环语句中的break
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* 测试循环语句中的break
* @author 葛宇
*/
package 控制语句;

public class TestBreak {
public static void main(String[] args) {
int total = 0;
while(true) {
int i = (int)Math.round(100*Math.random());
System.out.println(i);
if(i==50) {
break;
}
total++;
}
System.out.println("循环次数为:"+total);
}
}
//输出循环次数为30

Java学习之路--If选择语句
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* If选择语句
* @author 葛宇
*/
package 控制语句;

public class TestIf {
public static void main(String[] args) {
double x = 6*Math.random();
int age = (int)(80*Math.random());
System.out.println(x);
System.out.println(age);

////////////if///////////

if(x <= 2) {
System.out.println("Small");
}
if(x >= 2) {
System.out.println("Large");
}

//////////if-else/////////

if(x <= 2) {
System.out.println("Small");
}else {
System.out.println("Large");
}

///////Multi-if-else///////

if(age <= 15) {
System.out.println("儿童");
}else if(age <= 25) {
System.out.println("青年");
}else if(age <= 45) {
System.out.println("中年");
}else if(age <= 80) {
System.out.println("老年");
}
}
}