Java if语句示例

流程图



如果布尔表达式的计算结果为true,则执行if代码块,否则执行代码块。

示例

 

public class Test {
   public static void main(String args[]) {
      int x = 30;
      if( x < 20 ) {
         System.out.print("This is if statement");
      } else {
         System.out.print("This is else statement");
      }
   }
}

输出结果

这将产生以下结果-

This is else statement