下面程序输出结果是什么?
int addOne(int x) { return x + 1; } int main() { int a = 6; cout << addOne(a) + addOne(3); return 0; } }
9
10
11
12