嵌套的If-else语句可能无法正常工作

Nested if-else statement not working probably

本文关键字:常工作 工作 If-else 语句 嵌套      更新时间:2023-10-16

我需要对该程序进行一些帮助。当人数大于房间中允许的最大人数时,最后一个声明不会打印。我不确定我是做错了什么还是错过了重要的项目。我认为我不需要根据我使用的文本中的最后一个陈述中包括布尔语表达请协助。感谢您的帮助

//Write a program that determines whether a meeting room is in violation of fire law regulations regarding the maximum room capacity. 
//The program will read in the maximum room capacity and the number of people to attend the meeting. If the number of people is less than 
//or equal to the maximum room capacity, the program announces that it is legal to hold the meeting and tells how many additional people 
//may legally attend. If the number of people exceeds the maximum room capacity, the program announces that the meeting cannot be held as 
//planned due to fire regulations and tells how many people must be excluded in order to meet the fire regulations.
#include <iostream>
using namespace std;
int main()
{
//variable declaration
int numberOfPeople, maxRoomCapacity, morePeople, lessPeople;
//program ask user of input
cout << "Enter the number of people to attend the meeting: ";
cin >> numberOfPeople;
cout << "What is the room capacity: ";
cin >> maxRoomCapacity;
//formula to calculate the number of people that meets fire regulation
morePeople = maxRoomCapacity - numberOfPeople;
lessPeople = numberOfPeople - maxRoomCapacity;
//if-else statement to determine if fire regulation is met
if (numberOfPeople < maxRoomCapacity)
{
    cout << "It is legal to hold the meeting in the room, plus " << morePeople
        << " additional people may legally attend the meeting." << endl;
}
else if (maxRoomCapacity = numberOfPeople)
{
    cout << "It is legal to hold the meeting in the room, no additional person can be allowed." << endl;
}
else
{
    cout << "This meeting cannot be held as planned due to fire regulations. "
        << lessPeople << " people must be excluded in order to meet the fire regulations." << endl;
}
system("pause");
return 0;
}

在您的其他语句中,而不是比较两个变量,而是将numberOfPeople分配给maxRoomCapacity。作业评估为true,导致该IF-ELSE的主体执行,从而导致程序的流程跳过else语句。

问题在这里:

else if (maxRoomCapacity = numberOfPeople)

将其更改为:

else if (maxRoomCapacity == numberOfPeople)

注意:

  • =是一个分配运算符
  • ==是一个比较操作员

使用警告(例如,GCC的-Wall)编译,您应该得到:

prog.cc: In function 'int main()':
prog.cc:26:26: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
 else if (maxRoomCapacity = numberOfPeople)
          ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~