VB程序求1-40之间能被5整除得所有数的和.
问题描述:
VB程序求1-40之间能被5整除得所有数的和.
答
dim sum%,i%
for i=1 to 40
if i mod 5=0 then sum=sum+i
next
print summod 什么意思啊 没怎么听课不懂啊 谢谢啊