Use the code below to answer this question.

int id = 0;
cout << "ID: ";
cin >> id;

switch (id)
{
case 1:
cout << "Janet";
break;
case 2:
cout << "Mark";
break;
case 3:
case 5:
cout << "Jerry";
break;
default
cout << "Sue";
} //end switch

What will the code above display when the id variable contains the number 3?

Janet

Jerry

Mark

Sue

Use the code below to answer this question int id 0 cout ltlt ID cin gtgt id switch id case 1 cout ltlt Janet break case 2 cout ltlt Mark break case 3 case 5 co class=