【JAVASE】精密逻辑控制过程(分支和循环语句)
在Java中,分支语句主要是if-else
和switch
,循环语句主要是for
,while
和do-while
。以下是一些示例代码。
分支语句示例 - if-else
和 switch
:
int score = 85;
// if-else 示例
if (score > 80) {
System.out.println("优秀");
} else if (score > 60) {
System.out.println("及格");
} else {
System.out.println("不及格");
}
// switch 示例
switch (score / 10) {
case 10:
case 9:
System.out.println("优秀");
break;
case 8:
System.out.println("及格");
break;
default:
System.out.println("不及格");
}
循环语句示例 - for
, while
和 do-while
:
// for 循环示例
for (int i = 0; i < 5; i++) {
System.out.println("Hello, World!");
}
// while 循环示例
int count = 0;
while (count < 5) {
System.out.println("Hello, World!");
count++;
}
// do-while 循环示例
count = 0;
do {
System.out.println("Hello, World!");
count++;
} while (count < 5);
评论已关闭