為計算a“的值,某人編寫了函數(shù)power如下:Private Function power(a As Integer,n As Integer)As L
為計算a“的值,某人編寫了函數(shù)power如下:
Private Function power(a As Integer,n As Integer)As Long
Dim P As Long
P=a
For k=l T0 n
P=P * a
Next k
poWer=P
End Function
在調(diào)試時發(fā)現(xiàn)是錯誤的,例如Print power(5,4)的輸出應該是625,但實際輸出是3125。程序需要修改。下面的修改方案中有3個是正確的,錯誤的一個是
A.把For k=1 To n改為For k=2 To n
B.把P=P*a改為P=p^n
C.把Fork=1 To n改為For k=1 To n-1
D.把P=a改為P=1
正確答案:C解析:計算an應該循環(huán)n次,所以此處k的取值應為1 to n,而非n-1。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。