kourtnee86
Dec 12, 2009, 02:39 PM
iSum = 0
For iCnt = 1 to 5
iSum = iSum + iCnt
If iCnt = 5 then iSum = 200
For iCnt = 1 to 5
iSum = iSum + iCnt
If iCnt = 5 then iSum = 200
View Full Version : What is the value of iSum after running the following code?