單項選擇題以下不能實現(xiàn)符號函數(shù)y=sgn(x)的程序段是()。

A.if x>0 then y=1 else if x=0 then y=0 else y= -1
B.if x>0 then y=1 else if x<0 then y= -1 else y=0
C.if x>=0 then if x=0 then y=0 else y= -1 else y=1
D.if x<>0 then if x<0 then y= -1 else y= 1 else y=0


您可能感興趣的試卷

你可能感興趣的試題

3.單項選擇題關(guān)于條件語句,下列說法錯誤的是()。

A.條件語句中的“條件”可以是邏輯表達式或關(guān)系表達式
B.條件語句中的“條件”可以是數(shù)值表達式,非0值表示true,0值表示false
C.在塊結(jié)構(gòu)條件語句中,“語句塊”中的語句不能與then在同一行上
D.塊結(jié)構(gòu)的條件語句和單行結(jié)構(gòu)的條件語句都必須以Endif結(jié)束

5.單項選擇題

已知在“通用”代碼有以下語句:
DimA()AsInteger
則,在某一事件代碼中使用()是正確的。

A.ReDimA(30,4)
B.ReDimA(4)AsString
C.ReDimA(100)
D.ReDimA()