必须写两个else吗?
不用,else的多少是根据你的程序分为几个判断阶段来确定的,例如成绩评价及格和不及格就只需要一个else:
if(x<60) printf("yes"); else printf("no");
else if 是否可以用3个? 求教