下列程序用來計算1+2+…n,當和大于100時停止計算,請?zhí)羁铡?Private Sub Form_Click()Dim n as inte
下列程序用來計算1+2+…n,當和大于100時停止計算,請?zhí)羁铡?/p>
Private Sub Form_Click()
Dim n as integer,s as integer,I as integer,k as integer
s=0
k=0
n=inputbox(″請輸入n的值)
For i=1 to 100
k=k+1
s=s+I
【 】
Next i
Print s
End Sub
正確答案:if s>100 then exit forif s>100 then exit for 解析:依題意,用變量S來記錄1到n的累加和,當累加和S大于100時停止計算,故加入退出循環(huán)條件"if s>100 then exit for"
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。