• 2022-06-18
    中国大学MOOC: 有如下程序段:int x; scanf(%d,&x); switch ( x ) { case 9: x++; break; case 10: x++; case 11: x++; break; default: x++; }如果最初输入的x的值为10,则switch语句结束后x的值为________,