单项选择题下列程序的运行结果是( )。main() int x=1,y=3,a=0; while(x++!=(y=1)) a+1; if(y<x)break; printf( %d,%d,%d n”,x,y,
单项选择题有下列程序:#include<stdio.h>main() int a=6,b=7,m=1; switch(a%2) case 0:m++;break; case 1:m++; switch(b%2) defaut:m++; case0:m++;break; printf( %d n ,m);程序运行后的输出结果是( )。