单项选择题 有如下程序段,该程序段执行完后,执行循环的次数是( )。total=0Counter=1DoPrint Countertotal=total + CounterPrint totalCounter=Counter+1If total>10 ThenExit DoEnd IfLoop While Counter <=10
单项选择题 下列程序段的执行结果为( )。a=1b=1For I=1 To 3f=a+ba=bb=fPrint f;Next I
单项选择题 以下程序段运行时从键盘上输入字符“-”,则输出结果为( )。op$=InputBox("op=")If op$="+" Then a=a+2If op$="-" Then a=a-2Print a