编写一段VBScipt脚本,其功能是输出100以内同时能被3和5整除的数之和

2025-03-26 12:59:50
推荐回答(1个)
回答1:

if i mod 3 =0 then
test = test & i & " "
end if
next
msgbox test

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