我这样写会有什么问题?
if (heigh >= 160){
if (foot >= 40){
System.out.println("冠军");
}else if (heigh <= 150) {
if (foot <=35){
System.out.println("亚军");
}
}else if (heigh <= 140){
if (foot <=30) {
System.out.println("季军");
}
}else{
System.out.println("安慰奖");
}
}