Dim Sum As IntegerDim i As IntegerFor i = 1 To 100 If i = 51 Then Exit For End If Sum = Sum + iNext OutPut.Show(Sum)=1275
Dim Sum As IntegerDim i As IntegerFor i = 1 To 100 Sum = Sum + i If i = 51 Then Exit For End IfNextOutPut.Show(Sum)=1326
请教在实际应用中如何确定编码顺序?