VB编程 要求计算1-1000能被3.7整除的个数及其和……谢谢……
展开全部
dim i as integer
dim c as integer
dim a as integer
a=0
c=0
for i=1 to 1000
if (i mod 3=0) and (i mod 7=0) then
c=c+1
a=a+i
endif
next
msgbox "1-1000的数中能被3.7整除的数的个数是:" & c & vbcrlf & "这些数的和是:" & a
dim c as integer
dim a as integer
a=0
c=0
for i=1 to 1000
if (i mod 3=0) and (i mod 7=0) then
c=c+1
a=a+i
endif
next
msgbox "1-1000的数中能被3.7整除的数的个数是:" & c & vbcrlf & "这些数的和是:" & a
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询