C++选择结构和循环结构、嵌套的控制结构和其他控制语句(if、switch、while、do-while、for、自定义)
**选择结构:**if语句If语句的语法形式if (表达式) 语句例:if (x > y) cout << x;if (表达式) 语句1 else 语句2例:if (x > y) cout << x;else cout << y;if (表达式1) 语句1else if (表达式2) 语句2else if (表达式3) 语...