Build your intuition. Fill in the missing part by typing it in.
In C++, the syntax for an if/else statement is as follows:
TEXT/X-C++SRC
1if (___________) {
2 // code block executed if condition is true
3} else {
4 // code block executed if condition is false
5}
Write the missing line below.