C++ if语句
一个 if 语句由一个布尔表达式和一个或多个语句组成。
语法
C++中if语句的语法如下所示−
if(boolean_expression) {
// statement(s) will execute if the boolean expression is true
}
如果布尔表达式为 真 ,那么if语句内的代码块将被执行。如果布尔表达式为 假 ,则在if语句结束(闭合大括号之后)后,将执行if语句之后的第一组代码。
流程图
示例
#include <iostream>
using namespace std;
int main () {
// local variable declaration:
int a = 10;
// check the boolean condition
if( a < 20 ) {
// if condition is true then print the following
cout << "a is less than 20;" << endl;
}
cout << "value of a is : " << a << endl;
return 0;
}
当上述代码被编译和执行时,它产生以下结果 –
a is less than 20;
value of a is : 10