if(Led_time_data <= 10)
r_led_on;
else if(Led_time_data > 10 && Led_time_data <= 20)
b_led_toggle;
else if(Led_time_data > 20 && Led_time_data <= 30)
g_led_on;
else if(Led_time_data > 30 && Led_time_data <= 40)
r_led_toggle;
else if(Led_time_data > 40 && Led_time_data <= 50)
b_led_on;
else if(Led_time_data > 50 && Led_time_data <= 60)
g_led_toggle;
else
Led_time_data = 0;
以上代码编译报错 :Error[Pe127]: expected a statement 为什么呢 ?语句有问题么
此帖出自
小平头技术问答
比如if(Led_time_data <= 10)这一句不成立就表明Led_time_data已经大于10了,在接下来的else if(Led_time_data > 10 && Led_time_data <= 20)这一句中,你又加入了Led_time_data > 10这个判断,但是却是多余的,我应该觉得是这个问题,你把代码再修改一下再编译看看会不会出问题了
一周热门 更多>