运行以下c++程序,输出的结果是( )。
intfunc(int y){ y -=5; cout <<"x"; return0; } intmain(){ int x =10, y =5; if(x > y ||func(y)) cout << y; return0; }
X5
5
0