我正在使用 if else 条件在 c 中制作一个程序,它运行得非常好,没有任何错误,但它没有运行 else 条件(即,即使我给它输入了应该打印 else 条件的输入,它也给了我else if 条件而不是 else 条件),这里是代码
if(Number_Of_People==1){
printf("Show us your identification so we can proceed!");
}
else if(1<Number_Of_People<=6){
printf("Show us the identification of each member so that we can proceed!");
}
else
{
printf("Sorry, we dont have rooms for so many people!");
}