[填空题] 以下程序运行后输出的结果是______。
main()
int x=1,y=0,a=0,b=0;
switch (x)
case 1:switch (y)
case 0:a++;break;
case 1:b++;break;
case 2:a--;b--;break;
printf("%d %d",a,b);
正确答案:0 -1

[填空题] 以下程序运行后输出的结果是______。
main()
int x=1,y=0,a=0,b=0;
switch (x)
case 1:switch (y)
case 0:a++;break;
case 1:b++;break;
case 2:a--;b--;break;
printf("%d %d",a,b);
正确答案:0 -1
上一篇 [填空题] 在窗体上画两个文本框和一个命令按钮,然后在代码窗口中编写如下事件过程: Private Sub Command1
下一篇 [单项选择题] 某人编写了一个能够返回数组a中10个数中最大数的函数过程,代码如下: Function MaxValue(a()As Integer)As Integer Dim max%