C++ Win32 Console Tutorial 6 - If Statements 

If the condition, in the statement, is met, the code is executed. If the condition, in the statement, is not met, the code is not executed. If statements may include else if and/or else segments of the statement.

If Statement
if (condition)
else if (condition)
else

C++ Relational Operators
> Greater Than
< Less Than
>= Greater Than Or Equal To
<= Less Than Or Equal To
== Equal To
!= Not Equal To

Code Download
CPPW32T6.zip