c语言:illegal else without matching if

日期:2017-01-25 17:32:29 人气:1

c语言:illegal else without matching if

你第一个if后面直接加分号了,这样代表这个判断直接结束了。 后面的else if就出错了 建议你这么写 if(判断条件) { 处理1; ... } else if(判断条件2) { 处理2; ... } else { 处理3; ... }
    A+
热门评论