语法:
if(条件1){ 条件1成立时执行的代码 } else if(条件2){ 条件2成立时执行的代码 } ... else if(条件n){ 条件n成立时执行的代码 } else{ 条件1、2至n不成立时执行的代码 }
、先得执行条件一的判断,不满足才进行条件2的判断,以此类推