橘子味的心
标题:Java if/else语句

Java if语句用于测试条件。它检查布尔条件为:truefalse。 java中有各种类型的if语句,它们分别如下:

  • if语句
  • if-else语句
  • 嵌套if语句
  • if-else-if语句

Java if语句

Java语言中的if语句用于测试条件。如果条件为true,则执行if语句块。

语法:

  1. if(condition){
  2. // if 语句块 => code to be executed.
  3. }
  4. Java

执行流程如下图所示 -

1. 示例

  1. public class IfExample {
  2. public static void main(String[] args) {
  3. int age = 20;
  4. if (age > 18) {
  5. System.out.print("Age is greater than 18");
  6. }
  7. }
  8. }
  9. Java

输出结果如下 -

  1. Age is greater than 18
  2. Java

Java if-else语句

Java if-else语句也用于测试条件。如果if条件为真(true)它执行if块中的代码,否则执行else块中的代码。

语法:

  1. if(condition){
  2. //code if condition is true
  3. }else{
  4. //code if condition is false
  5. }
  6. Java

执行流程如下图所示 -

示例代码:

  1. public class IfElseExample {
  2. public static void main(String[] args) {
  3. int number = 13;
  4. if (number % 2 == 0) {
  5. System.out.println("这是一个偶数");
  6. } else {
  7. System.out.println("这是一个奇数");
  8. }
  9. }
  10. }
  11. Java

输出结果如下 -

  1. 这是一个奇数
  2. Java

Java if-else-if语句

Java编程中的if-else-if语句是从多个语句中执行一个条件。

语法:

  1. if(condition1){
  2. //code to be executed if condition1 is true
  3. }else if(condition2){
  4. //code to be executed if condition2 is true
  5. }else if(condition3){
  6. //code to be executed if condition3 is true
  7. }
  8. ...
  9. else{
  10. //code to be executed if all the conditions are false
  11. }
  12. Java

执行流程如下图所示 -

示例:

  1. public class IfElseIfExample {
  2. public static void main(String[] args) {
  3. int marks = 65;
  4.  
  5. if (marks < 50) {
  6. System.out.println("fail");
  7. } else if (marks >= 50 && marks < 60) {
  8. System.out.println("D grade");
  9. } else if (marks >= 60 && marks < 70) {
  10. System.out.println("C grade");
  11. } else if (marks >= 70 && marks < 80) {
  12. System.out.println("B grade");
  13. } else if (marks >= 80 && marks < 90) {
  14. System.out.println("A grade");
  15. } else if (marks >= 90 && marks < 100) {
  16. System.out.println("A+ grade");
  17. } else {
  18. System.out.println("Invalid!");
  19. }
  20. }
  21. }
  22. Java

输出结果如下 -