• 2022-06-10 问题

    以下分支结构控制语句正确的是() 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

    以下分支结构控制语句正确的是() 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

  • 2021-04-14 问题

    下列哪个if语句不正确: if a=1 then b=1 else b=2|if a=1 then b=1 else if b=2 then b=2 end if|if a=1 then b=1 else if b=2 then b=2 end if end if|if a=1 then b=1 elseif b=2 then b=2 end if

    下列哪个if语句不正确: if a=1 then b=1 else b=2|if a=1 then b=1 else if b=2 then b=2 end if|if a=1 then b=1 else if b=2 then b=2 end if end if|if a=1 then b=1 elseif b=2 then b=2 end if

  • 2022-06-15 问题

    下面流程控制语句中,( )格式是正确的。 A: if{ }else{ } B: if(){ }elseif{ } C: if(){ }else if{<br> }else{<br> } D: if(){ }elseif(){ }else{<br> }

    下面流程控制语句中,( )格式是正确的。 A: if{ }else{ } B: if(){ }elseif{ } C: if(){ }else if{<br> }else{<br> } D: if(){ }elseif(){ }else{<br> }

  • 2022-06-07 问题

    设有下面的语句:Print IIf(x>0, 1, IIf(x<0,-1, 0))与此语句输出结果不同的程序段是______。 A: If x>0 Then x=1 ElseIf x<0 Then x=-1 End If Print x B: If x>0 Then Print 1 ElseIf x<0 Then Print-1 Else Print 0 End If C: Select Case x Case Is>0 Print 1 Case Is<0 Print-1 Case Else Print 0 End Select D: If x<>0 Then If x>0 Then Print 1 ElseIf x<0 Then Print-1 Else Print 0 End If

    设有下面的语句:Print IIf(x>0, 1, IIf(x<0,-1, 0))与此语句输出结果不同的程序段是______。 A: If x>0 Then x=1 ElseIf x<0 Then x=-1 End If Print x B: If x>0 Then Print 1 ElseIf x<0 Then Print-1 Else Print 0 End If C: Select Case x Case Is>0 Print 1 Case Is<0 Print-1 Case Else Print 0 End Select D: If x<>0 Then If x>0 Then Print 1 ElseIf x<0 Then Print-1 Else Print 0 End If

  • 2022-06-08 问题

    x=5;if x<;=-10 y=x+1;elseif -10<;x<;=10 y=x+2;else y=x+3;end The final value of y is 7.

    x=5;if x<;=-10 y=x+1;elseif -10<;x<;=10 y=x+2;else y=x+3;end The final value of y is 7.

  • 2021-04-14 问题

    阅读下面的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=’’)

    阅读下面的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=’’)

  • 2022-05-28 问题

    在if分支结构中,语句if表示分支的开始,那么下列选项中,哪个表示分支结束: A: else; B: end; C: continue; D: elseif;

    在if分支结构中,语句if表示分支的开始,那么下列选项中,哪个表示分支结束: A: else; B: end; C: continue; D: elseif;

  • 2022-06-10 问题

    if语句的嵌套使用中,if单分支中只能嵌套if的单分支语句;if…else双分支语句中只能嵌套if…else双分支语句,if…elseif…else语句中只能嵌套if…elseif…else语句。(  )

    if语句的嵌套使用中,if单分支中只能嵌套if的单分支语句;if…else双分支语句中只能嵌套if…else双分支语句,if…elseif…else语句中只能嵌套if…elseif…else语句。(  )

  • 2021-04-14 问题

    【单选题】分段函数: ,下面程序段中正确的是__________。 A. If x < 0 Then y = 0 If x < 1 Then y = 1 If x < 2 Then y = 2 If x >= 2 Then y = 3 B. If x >= 2 Then y = 3 If x >= 1 Then y = 2 If x > 0 Then y = 1 If x < 0 Then y = 0 C. If x < 0 Then y = 0 ElseIf x > 0 Then y = 1 ElseIf x > 1 Then y = 2 Else y = 3 End If D. If x > =2 Then y = 3 ElseIf x > =1 Then y = 2 ElseIf x > =0 Then y = 1 Else y = 0 End If

    【单选题】分段函数: ,下面程序段中正确的是__________。 A. If x < 0 Then y = 0 If x < 1 Then y = 1 If x < 2 Then y = 2 If x >= 2 Then y = 3 B. If x >= 2 Then y = 3 If x >= 1 Then y = 2 If x > 0 Then y = 1 If x < 0 Then y = 0 C. If x < 0 Then y = 0 ElseIf x > 0 Then y = 1 ElseIf x > 1 Then y = 2 Else y = 3 End If D. If x > =2 Then y = 3 ElseIf x > =1 Then y = 2 ElseIf x > =0 Then y = 1 Else y = 0 End If

  • 2022-05-28 问题

    在if分支结构中,语句if表示分支的开始,那么下列选项中,哪个表示分支结束: A: else B: end C: continue D: elseif E: break

    在if分支结构中,语句if表示分支的开始,那么下列选项中,哪个表示分支结束: A: else B: end C: continue D: elseif E: break

  • 1 2 3 4 5 6 7 8 9 10