if/else and if/elseif

后端 未结 10 1860
傲寒
傲寒 2020-12-17 01:00

If I have a statement block like this:

if (/*condition here*/){ }
else{ }

or like this:

if (/*condition here*/)
else if (/         


        
10条回答
  •  温柔的废话
    2020-12-17 01:39

    **if/else**
    if(condition)
      statement;
    else
       statement;
    

    if/ else if /else

    if(condition)
     {
       if(condition)
          statement;
       else 
         statement;
      }   
    else if(condition)
    {
        if(condition)
         statement;
        else
         statement;
    }
    else
        statement;
    

    if/else and if/else if used also like this

提交回复
热议问题