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("老年");
}
}
}
文章作者: GeYu
文章链接: https://nuistgy.github.io/2020/01/25/Java学习之路(14)/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Yu's Blog