0到1000所有比37整除的数字相乘的积代码怎么写
问题描述:
0到1000所有比37整除的数字相乘的积代码怎么写
答
j=1
for i=0 to 1000
if i mod 37=0 then j=j*1
next
print j