6.1

6.1 if 语句

if (test-condition)
statement

if else 语句

if (test-condition)
statement1
else
statement2

格式化if else语句

使用{}

if else if else