注意:此页面搜索的是所有试题
以下程序运行后的输出结果是____
#include<stdio.h>
int 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\n..,a,b);
return 0;
#include<stdio.h>
int 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\n..,a,b);
return 0;
参考答案