130-if else语句
Posted wuxiaohui1983
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了130-if else语句相关的知识,希望对你有一定的参考价值。
分支-if语句
if else语法
if(<test>)
<code executed if <test> is true>
else
<code executed if <test> is false>
如果if和else要执行的代码有多行,可以加上{}组成一个块
if(<test>){ <code executed if <test> is true> }else{ <code executed if <test> is false> }
以上是关于130-if else语句的主要内容,如果未能解决你的问题,请参考以下文章