if…else语句
回答
爱扬教育
2022-08-11
- 相关推荐
if (condition)
{当条件为 true 时执行的代码}
else
{ 当条件不为 true 时执行的代码}
扩展资料
嵌套式的if…else…语句:
if (condition)
{if (condition){当条件为 true 时执行的代码 }
else{当条件不为 true 时执行的代码 }}
else(condition)
{ 当条件不为 true 时执行的代码}