执行下面程序后,输出为 ()。
int f(int x = 2){return x * 3;} int main(){ cout << f() <<" " << f(4); }
2 12
6 12
6 4
12 6