编写VB:求1到1000之间所有能被3整除的数的和如题 谢谢了

日期:2014-06-18 08:54:23 人气:1

编写VB:求1到1000之间所有能被3整除的数的和如题 谢谢了

dim num3 as integer for i=1 to 1000 if i mod 3=0 then num3=num3+i end if next
    A+
热门评论