【单选题】( 34 )某人设计了下面的函数 fun ,功能是返回参数 a 中数值的位数 Function fun(a As Integer) As Integer Dim n% n = 1 While a / 10 >= 0 n = n + 1 a = a / 10 Wend fun = n End Function 在调用该函数时发现返回的结果不正确 , 函数需要修改 , 下面的修改方案中正确的是
【单选题】某人设计了下面的函数fun,功能是返回参数a中数值的位数: Function fun(a AS Integer)AS Integer Dim n% N=1 While a\10>=0 N=n+l:a=a\l0 Wend Fun=n End Function 在调用该函数时发现返回的结果不正确,函数需要修改,下面的修改方案中正确的是。