用vfp编写程序:求1*2-2*3+3*4-4*5+.+99*100的值.
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/26 13:01:56
用vfp编写程序:求1*2-2*3+3*4-4*5+.+99*100的值.用vfp编写程序:求1*2-2*3+3*4-4*5+.+99*100的值.用vfp编写程序:求1*2-2*3+3*4-4*5+
用vfp编写程序:求1*2-2*3+3*4-4*5+.+99*100的值.
用vfp编写程序:求1*2-2*3+3*4-4*5+.+99*100的值.
用vfp编写程序:求1*2-2*3+3*4-4*5+.+99*100的值.
clear
s=0
for i=1 to 99
s=s+(-1)^(i-1)*i*(i+1)
endfor
"1*2-2*3+3*4-4*5+……+99*100="+alltrim(str(s))