What will the following program segment display?
int funny = 7, serious = 15;
funny = serious * 2;
switch (funny)
{ case 0 : cout << "That is funny.\n";
break;
case 30: cout << "That is serious.\n";
break;
case 32: cout << "That is seriously funny.\n";
break;
default: cout << funny << endl;
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.