立即学习:https://edu.csdn.net/course/play/271/1731?utm_source=blogtoedu
if 嵌套循环
if (表达式1){
}
else if (表达式2){
} else if 即不满足前面的条件
if(x<2){
y=x;
}
else if(x>=2 && x<6){
y=x*x+1;
}
else if 就不用写成(x>=2 && x<6) else if 即不满足前面的条件直接写成x<6
if else 配对关系 else 配对最近的没有配对的if 语句