A-A+
有如下函数: Function fun(a As Integer n As Integer)As Integer Dim m AS Integer While a>
问题详情
有如下函数: Function fun(a As Integer,n As Integer)As Integer Dim m AS Integer While a>=n a=a-n:m=m+1 Wend Fun=m End Function 该函数的返回值是。 A.a乘以n的乘积 B.a加n的和 C.a减n的差 D.a除以n的商(不含小数部分)
请帮忙给出正确答案和分析,谢谢!