if - else - end的分支结构中,else部分可以没有,只剩下if - end也是可以的
举一反三
- 下列不是分支结构的语句是( )。 A: While…Wend B: If…Then…End If C: Select…Case…End Select D: If…Then…Else…End If
- 阅读下面的python程序,请问输出结果是什么? Print(“T”,end=’’) if not 0 else print (‘F’,end=’’) Print(“T”,end=’’)if 6 else print (‘F’,end=’’) Print(“T”,end=’’)if””else print(‘F‘,end=’’) Print(“T”,end=’’)if”abc”else print(‘F’,end=’’) Print(“T”,end=’’)if____else print (‘F’,end=’’) Print(“T”,end=’’)if(1,2)else print(‘F’,end=’’) Print(“T”,end=’’)if[ ]else print(‘F’,end=’’) Print(“T”,end=’’)if[1,2]else print(‘F’,end=’’) Print(“T”,end=’’)if{ }else print(‘F’,end=’’) Print(“T”,end=’’)if{1,2}else print(‘F’,end=’’)
- 多分支If语句结构中可以没有Else语句。
- 以下分支结构控制语句正确的是() A: IF 条件1 THEN 语句 [ELSEIF 条件2 THEN 语句] [ELSE 语句] END IF B: IF 条件1 THEN 语句 [ELSEIF 条件2 THEN 语句] [ELSE 语句] C: IF 条件1 语句 [ELSEIF 条件2 THEN 语句] [ELSE 语句] END IF D: 条件1 THEN 语句 [ELSEIF 条件2 THEN 语句] [ELSE 语句] END IF
- 在分支结构中,在没有if的情况下,else可以单独存在