高一信息技术VB循环语句 for语句1例:编写VB程序,计算整数1+2+3+10的值Dim s as integerPrint sS=1+2+3+4+5+6+7+8+9+10S=0S=s+1S=s+2S=s+3S=s+4S=s+5S=s+6S=s+7S=s+8S=s+9S=s+102Private Sub Command1_Click()Dim s,i As Integers=0For i=1 To 10 Step 1s=s+iNext iPrint sEnd Sub3For i=1 To 10 Step 1s=s+iNext iFor 循环变量=初值 to 终值 step 步长 语句块next4For i=1 To 10 Step 1s=s+iNext iFor 循环变量=初值 to 终值 step 步长 语句块next1、For语句中步长值可以是正数,也可以是负数,但不可以是0。2、但步长值为1时,可省略,即可省略“step 1”。3、一段for循环语句中for和next必定是成对出现的。51、在VB窗体界面上输出110这10个自然数 For i=1 to 10 print ine