//不嵌套if
public int countY1(int x){
int y=-1;
if(-5<x&&x<0){
y=x;
}
if(x==0){
y=x-1;
}
if(x>0&&x<10){
y=x+1;
}
return y;
}
//嵌套if
public int countY2(int x){
int y=-1;
if(-5<x&&x<0){
y=x;
}else if(x==0){
y=x-1;
}else if(x>0&&x<10){
y=x+1;
}
return y;
}
switch的后续补上