📅  最后修改于: 2020-12-17 05:05:14             🧑  作者: Mango
决策结构要求程序员指定一个或多个要由程序评估或测试的条件,以及确定条件为真的情况下要执行的一条或多条语句,以及如果条件被确定为可选的其他执行语句确定为假。
以下是大多数编程语言中常见的典型决策结构的一般形式-
C++编程语言提供以下类型的决策语句。
Sr.No | Statement & Description |
---|---|
1 | if statement
An ‘if’ statement consists of a boolean expression followed by one or more statements. |
2 | if…else statement
An ‘if’ statement can be followed by an optional ‘else’ statement, which executes when the boolean expression is false. |
3 | switch statement
A ‘switch’ statement allows a variable to be tested for equality against a list of values. |
4 | nested if statements
You can use one ‘if’ or ‘else if’ statement inside another ‘if’ or ‘else if’ statement(s). |
5 | nested switch statements
You can use one ‘switch’ statement inside another ‘switch’ statement(s). |
我们已经介绍了条件运算符“? :“”可用于替换if … else语句。它具有以下一般形式-
Exp1 ? Exp2 : Exp3;
Exp1,Exp2和Exp3是表达式。注意冒号的使用和放置。
‘?’的值这样确定表达式:计算Exp1。如果为true,则对Exp2进行求值并成为整个’?’的值。表达。如果Exp1为false,则对Exp3求值,其值成为表达式的值。