Java if语句
一个 if 语句由一个布尔表达式后跟一个或多个语句组成。
语法
下面是if语句的语法−
if(Boolean_expression) {
// Statements will execute if the Boolean expression is true
}
如果布尔表达式的值为真,则将执行if语句内的代码块。如果不是,则将执行if语句结束后(在闭合大括号之后)的第一组代码。
流程图
示例
public class Test {
public static void main(String args[]) {
int x = 10;
if( x < 20 ) {
System.out.print("This is if statement");
}
}
}
这将产生如下结果 –
输出
This is if statement.