True or false: The following if/else statements cause the same output to display.
A) if (x > y)
cout << "x is greater than y.\n";
else
cout << "x is not greater than y.\n";
B) if (x <= y)
cout << "x is not greater than y.\n";
else
cout << "x is greater than y\n";
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.