编写程序,使用循环算法得到s=1+3+5......+999的

编写程序,使用循环算法得到s=1+3+5......+999的
2025-03-01 09:20:41
推荐回答(1个)
回答1:

for i=1 to 999 step 2
sum=sum+i
next
msgbox sum