C语言- if 语句
if ( condition ) statement // 注: 1.可嵌套多个if、else 2.允许没有下方 else 部分 else statement2
statement -语句,多个语句可用花括号:
{
包含多个语句的语句块
}
执行流程:
检测 condition 为 true 执行 statement,否则执行 statement2。
if ( condition ) statement // 注: 1.可嵌套多个if、else 2.允许没有下方 else 部分 else statement2
statement -语句,多个语句可用花括号:
{
包含多个语句的语句块
}
执行流程:
检测 condition 为 true 执行 statement,否则执行 statement2。