请编写一段VBScipt脚本,其功能是找出100以内能被3整除的数,并显示输出。

2025-03-26 02:02:48
推荐回答(1个)
回答1:

for i = 1 to 100
if i mod 3 =0 then
test = test & i & " "
end if
next
msgbox test

复制到记事本,另存为.vbs文件