执行以下代码,输出的结果是( )。
int x = 2; int y = 3; if(x > y) { cout << x << endl; } else { cout << y << endl; }
2
3
5
6