单选题 难度 2
排队买票,先来先走。
下面代码的输出是( )。 queue<int> q; q.push(1); q.push(2); q.push(3); q.pop(); cout << q.front() << " " << q.size() << endl;