运行以下函数程序,输出为()
int max(int a,int b) { return a>b?a:b; } int main() { cout<<max(max(2,5),3); return 0; }
5
3
2
6