网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

下列程序执行后,变量S的值为______ 。 Dim s As Long,X As Integer s=0 X=1 Do While x<10 s= s+ x x=x+2 Loop Print s

A. 10

B.25

C.50

D.100


参考答案

更多 “ 下列程序执行后,变量S的值为______ 。 Dim s As Long,X As Integer s=0 X=1 Do While x<10 s= s+ x x=x+2 Loop Print sA. 10B.25C.50D.100 ” 相关考题
考题 下列程序执行后,变量s的值为______。 Dim s As long ,x As Integer s=0:x=1 Do While (x A. 10B. 25C. 50D. 100

考题 有以下程序: #includestdio.h int fun {static int x=1; x+=1;return X; } main {int i,S=1; for(i=1;i=S;i++)s+=fun; printf("%d\n",s); } 程序运行后的输出结果是( )。A.11B.21C.6D.120

考题 有以下程序#includestdio.hint fun( ){static int x=1;x+=1;return x;}main( ){int i,s=1;for(i=1;i=s;i++)s+=fun( );printf(”%d\n”,s);}程序运行后的输出结果是( )。A.11B.21C.6D.120

考题 执行下面的程序段后,变量k中的值为 include void main( ) { int k=3,s[2]; s[ 执行下面的程序段后,变量k中的值为 #include<iostream.h> void main( ) { int k=3, s[2]; s[0]=k; k=s[1] *10; cout < < k;}A.不定值B.33C.30D.10

考题 若下列程序执行后t的值为4,则执行时输入a,b的值范围是 #include ”stdio.h” main() { int a, b, s=1, t=1; scanf (”%d, %d”, a, b); if (a>0) s+=1; if (a>b) t+=s; else if(a==b) t=5; else t = 2*s; printf (”s=%d, t=%dn”, s,t); }

考题 执行以下程序段后,i的值为() int i=1,s=3; do { s+=i++; if (s%7==0) continue; else ++i; } while (s<15);

考题 执行完以下程序片段后,s的值为() int num=0,s=0; while(num<=2) { num++; s+=num; }

考题 9、下列程序段执行后, 变量x的值是()。 for(x=2;x<10;x+=3)A.2B.9C.10D.11

考题 3、若下列程序执行后t的值为4,则执行时输入a,b的值范围是 #include ”stdio.h” main() { int a, b, s=1, t=1; scanf (”%d, %d”, a, b); if (a>0) s+=1; if (a>b) t+=s; else if(a==b) t=5; else t = 2*s; printf (”s=%d, t=%d\n”, s,t); }