编程实现1到100之间所有偶数的和

问题描述:

编程实现1到100之间所有偶数的和

s=0
for i=2 to 100 step 2
s=s+i
next i
print s