函数过程Fun1的功能是:如果参数b为奇数,则返回值为1, 否则返回值为0。 Function Fun1 (b As Integer) if ______ Then Fun1 =0

admin2009-03-15  30

问题 函数过程Fun1的功能是:如果参数b为奇数,则返回值为1, 否则返回值为0。      Function Fun1 (b As Integer)           if ______ Then                 Fun1 =0           Else                 Fun1 = 1           End If      End Function      使该功能完整,应在空行处填入以下哪条语句

选项 A、b Mod 2<>0
B、b Mod 2 =0
C、b/2 = 1
D、b\2 =0

答案2

解析 本题考查的是函数过程的定义。 6是偶数的条件是“b Mod 2=0”,当6为偶数时返回0,应将0赋给函数名即“Fun1”,当&为奇数时返回1,即将1赋给“Fun1”。所以本题的正确答案是选项B。
转载请注明原文地址:https://jikaoti.com/ti/t6q0FFFM
0

最新回复(0)