level 4
public class Testif{
public static void main(String [] args){
int y=600;
if(y<200){
System.out.println("行,没事");
}else if(y<500){
System.out.println("有点贵");
}else if (y<800){
System.out.println("行了别买了");
}else System.out.print("我走了哼");
}
}
2012年12月13日 14点12分