C++ if语句

C++ if语句

一个 if 语句由一个布尔表达式和一个或多个语句组成。

语法

C++中if语句的语法如下所示−

if(boolean_expression) {
   // statement(s) will execute if the boolean expression is true
}

如果布尔表达式为 ,那么if语句内的代码块将被执行。如果布尔表达式为 ,则在if语句结束(闭合大括号之后)后,将执行if语句之后的第一组代码。

流程图

C++ 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程