求1-2+3-4+5-6+.+99-100的值 s=0 for i=1 to 99 step 2 s=s+_______
1个回答
应该是这样吧
Dim s As Integer
s = 0
For i = 1 To 100 Step 2
s = s - 1
Next
相关问题
For i = 2.6 To 4.9 Step 0.6 s = s + 1 Next i
s=1 for i=1 to 5 step 2 s=s+i endfor s
s=0 For i=1 to 10 step 2 s=s+i Next Print s
设实数s,t分别满足19s2+99s+1=0,t2+99t+19=0,并且st≠1,求[st+4s+1/t]的值.
实数s,t分别满足方程19s^2+99s+1=0和19+99t+t^2=0,求代数式(st+4s+1)/t的值
实数s,t分别满足方程19s^2+99s+1=0和19+99t+t^2=0,求代数式(st+4s+1)/t的值
实数s,t分别满足方程19s2+99s+1=0和19+99t+t2=0,求代数式t/st+4s+1的值.
s=0 For i=1to 10 step 2 s= s+1 i=i*2 变量S等于什么啊 为什么
for next 循环s=0for i=1 to 10 step 2s=s+1i=I*2next i当循环变量后,i,s
S← 1For I from 1 to 9 step 2S←S + IEnd forPrint S