java

当前位置:中华考试网 >> java >> java基础 >> 文章内容

java入门教程:if...else语句

来源:中华考试网  [2016年4月21日]  【

if...else语句

  if语句后面可以跟else语句,当if语句的布尔表达式值为false时,else语句块会被执行。

  语法

  if…else的用法如下:

  if(布尔表达式){
  //如果布尔表达式的值为true
  }else{
  //如果布尔表达式的值为false
  }

  实例

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

  以上代码编译运行结果如下:

  这是 else 语句
责编:ljnbset
  • 会计考试
  • 建筑工程
  • 职业资格
  • 医药考试
  • 外语考试
  • 学历考试