【简答题】下列程序的执行结果是( )。main( ){ int x=2,y; switch(y=x+1) { case 1: y=x; case 2: y-=x*3; case 3: y=x--; case 4: y-=4*x; } printf("%d\n",y);}A. 1 B. 2 C. -2 D. -3
【简答题】下列程序的执行结果是( )。main( ){ int x=2,y; switch(y=x+1) { case 1: y=x; case 2: y-=x*3; case 3: y=x--; case 4: y-=4*x; } printf("%d\n",y);}(2.0分)A. 1 B. 2 C. -2 D. -3