Compound statements (cont.)
nBraces are used to create a block or compound statement, which is a single composite statement.
nif (condition) { if (condition) {
n statement1    statement1
n …    …
n statementn    statementn
n} } else {
n    statement1
n    …
n    statementn
n }