用VB设计一个程序,找出100到8000范围内所有能同时被3和8整除的自然数?

如题所述

第1个回答  2020-05-12
for i=100 to 8000
if (i mod 3=0) and (i mod 8=0) then print i
next本回答被网友采纳
相似回答