用VFP编写程序计算1_100之间能被3整除的数的和

问题描述:

用VFP编写程序计算1_100之间能被3整除的数的和

s=0
for i=1 to 100
if i%3=0
s=s+i
endif
endfor