[单项选择题] 设a、b都是自然数.为求a除以b的余数,某人编写了以下函数: Function fun(a As Integer,b As Integer) While a>ba=a-b W

14 查阅

[单项选择题] 设a、b都是自然数.为求a除以b的余数,某人编写了以下函数:

Function fun(a As Integer,b As Integer)

While a>b

a=a-b

Wend

fun=a

End Function

在调试时发现函数是错误的。为使函数能产生正确的返回值,应做的修改是( )

A.把a=a-b改为a=b-a

B.把a=a-b改为a=a

C.把While a>b改为while a<b

D.把While a>b改为While a>=b

参考答案:

B

求余运算符为“”。

计算机考试