Answer:
See explaination
Explanation:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
?? standing;
?? dark;
raptor_prompt_variable_zzyz ="Is it dark?";
cout << raptor_prompt_variable_zzyz << endl;
cin >> DARK;
if (DARK=="Yes")
{
raptor_prompt_variable_zzyz ="Is someone standing on the doormat outside the front door?";
cout << raptor_prompt_variable_zzyz << endl;
cin >> STANDING;
if (STANDING=="Yes")
{
cout << "LAMP IS ON" << endl; }
else
{
cout << "LAMP IS OFF" << endl; }
}
else
{
cout << "LAMP IS OFF" << endl; }
return 0;
}