摘要: 注意:if语句可嵌套 单分支: if 判断条件;then 条件为真的分支代码 fi 双分支: if 判断条件; then 条件为真的分支代码 else 条件为假的分支代码 fi 多分支 if 判断条件1; then 条件为真的分支代码 elif 判断条件2; then 条件为真的分支代码 elif 阅读全文
posted @ 2018-05-13 16:33 Gmiao 阅读(367) 评论(0) 推荐(0) 编辑