1到100能被3或7整除的数的平方和
问题描述:
1到100能被3或7整除的数的平方和
vf 里的
答
s=0
for n=1 to 100
if n%3=0 or n%7=0
s=s+n^2
endif
endfor
return