注意:此页面搜索的是所有试题
题目内容
(金融学(第二学期))
写程序执行结果:
clear
s=0
for i=2 to 15
if mod(i,2)<>0 and mod(i,3)=0
s=s+i
endif
endfor
?s
return
clear
s=0
for i=2 to 15
if mod(i,2)<>0 and mod(i,3)=0
s=s+i
endif
endfor
?s
return
参考答案