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

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

运行下列程序: Private Sub Command1_Click() x = 0 Do While x<10 x=x * x + 1 y=y+x Loop MsgBox y End Sub 单击Command1命令按钮后,弹出的消息对话框中会显示

A.5

B.8

C.26

D.34


参考答案

更多 “ 运行下列程序: Private Sub Command1_Click() x = 0 Do While x<10 x=x * x + 1 y=y+x Loop MsgBox y End Sub 单击Command1命令按钮后,弹出的消息对话框中会显示A.5B.8C.26D.34 ” 相关考题
考题 有以下程序,程序运行结束后,x的值是( )。 x=1 y=2 do x=x*y y=y+1 loop while y<5A.2B.4C.8D.24

考题 有以下程序:include using namespace std;int main (){int x=15;while (x>10 int main () { int x=15; while (x>10x<50) { x++; if (x/3) { x++; break; } } cout<<x<<endl; return 0; } 执行后的输出结果是A.15B.16C.17D.18

考题 下列程序的运行结果是【 】。x="计算机等级考试"Y=""L=LEN(X)DO WHILE L>=1Y=Y+SUBSTR(X,L-1,2)L=L-2ENDDO?Y

考题 有以下程序:includeusing namespace std;int main(){ intx=15; while(x>10 有以下程序: #include <iostream> using namespace std; int main() { int x=15; while(x>10x<50) { x++; if(x/3) { x++; break; } } cout<<x<<end1; return 0; }A.15B.16C.17D.18

考题 有以下程序:includeusing namespace std;int main(){int x=15;while(x>10x 有以下程序: #include<iostream> using namespace std; int main() { int x=15; while(x>10x<50) { x++; if(x/3) { x++;break; } } cout<<x<<endl; return 0; } 执行后的输出结果是( )。A.15B.16C.17D.18

考题 有以下程序:inclydeusing namespace std;int main() { int x=15; while(x>10x<50) { x++; if(x/3) { x++;break; } } cout<<x<<endl; return 0; } 执行后的输出结果是A.15B.16C.17D.18

考题 有以下程序:include using namespace std;int main() {int x=15;while(x>10 int main() { int x=15; while(x>10x<50) { x++; if(x/3) { x++; break; } } cout<<x<<end1; return 0; } 执行后的输出结果是A.15B.16C.17D.18

考题 下列程序段运行结束后,变量x的值为( )。x=1y=2Dox=x*yy=y+1Loop While y<2A.1B.2C.3D.4

考题 下面程序段的运行结果是 。 x=2; do{printf("*");x--;}while(!x==0);

考题 【单选题】以下程序的运行结果为 #include <stdio.h> void main() { int x=1,y=2; printf(“x=%d y=%d * sum * =%dn”,x,y,x+y); printf(“10 Squared is : %dn”,10*10); }A.1 2 3 100B.x=1 y=1 sum=3 100C.x=1 y=1 *sum*=3 100D.x=1 y=1 *sum*=3 10 Squared is : 100