摘要: 选择结构 if语句: if语句的语法形式 if (表达式) 语句 例:if (x > y) cout << x; if (表达式) 语句1 else 语句2 例:if (x > y) cout << x; else cout << y; if (表达式1) 语句1 else if (表达式2) 语句 阅读全文
posted @ 2018-07-01 15:57 Neal_Pu 阅读(230) 评论(0) 推荐(0) 编辑