谁能帮我写一道Visual Foxpro的程序题
求1-100之间3和5的倍数之和 最好能用两种方法 写完后必有追加 万分感谢
求1-100之间3和5的倍数之和 最好能用两种方法 写完后必有追加 万分感谢
答案:clear
s=0
for i=1 to 100
if i%3=0 and i%5=0
s=s+i
endif
endfor
?"1-100之间3和5的倍数之和:",s
clear
s=0
i=1
do while i<=100
if i%3=0 and i%5=0
s=s+i
endif
i=i+1
enddo
?"1-100之间3和5的倍数之和:",s
上一个:Foxpro6.0中如何把表中的连续几个字段的内容设为一个数组变量从而应用于程序设计
下一个:visual foxpro 6.0建立项目文件的命令是什没PROJEG