Answer:
c. score > 90/"Nice try" / "Great job"
Step-by-step explanation:
Given
if (XXX)
cout << YYY;
else
cout << ZZZ;
Required
Replace XXX, YYY, ZZZ with right parameters
From the question, we understand that:
XXX represents scores greater than 90.
This means:
Also, we understand that
YYY represents stands for string "Great job"
This means:
Lastly,
ZZZ represents string "Nice try"
So, we have: