VFP题目,编写程序,计算1×2+2×3+3×4+…+9×10的值

问题描述:

VFP题目,编写程序,计算1×2+2×3+3×4+…+9×10的值

sumi=0
for i=1 to 9 do
sumi=sumi+i*(i+1)
next
sumi
以上这段保存为.prg的文件