执行下列C++语句: int x = 2;switch ( ){case 1: cout << “One”; break;case 2: cout << “Two”; break;case 3: cout << “Three”; break;default: cout << “Error”; break;} 显示器上将显示( )。
A、One
B、Two
C、Three
D、Error