【单选题】读下面程序,从选项中选出正确的输出结果() #include main() { int x=10,y=5; switch(x) { case 1: x+y; default: x+=y; case 2:y--; case 3:x--; } printf("x=%d,y=%d",x,y); }
【单选题】读下面程序,从选项中选出正确的输出结果( )。 #include void main() { int x=10,y=5; switch(x) { case 1:x++; default:x+=y; case 2:y--; case 3:x--; } printf("x=%d,y=%d",x,y); }