标签:条件 graph 语法 宝贝 core 判断 语句 code 多条件
语法:
if(condition) statement1;
else statement2;
语法:
if (condition1) statement1;
else if (condition2) statement2;
else statement3;
else if能嵌套无数次,只要遇到正确的condition,就执行相关语句,然后结束程序。
标签:条件 graph 语法 宝贝 core 判断 语句 code 多条件
原文地址:https://www.cnblogs.com/weiyi2020/p/12358064.html