Syntax:
if (
)
else
Purpose:
if
Example:
int i=3; if (i > 5) { "i is bigger than 5"; } else { "i is smaller than 6"; } ==> i is smaller than 6