VFP编程:编写程序,计算1到100之内能被3或5整除的数

2025-03-24 14:04:34
推荐回答(1个)
回答1:

clear
for i=1 to 100
if mod(i,3)=0 or mod(i,5)=0
?i
endif
endfor