#14067. [GESP202609 六级 C++] 第 18 题
[GESP202609 六级 C++] 第 18 题
下列代码执行后,输出结果为 30。
queue<int> q;
q.push(10);
q.push(20);
q.push(30);
q.pop();
cout << q.front();
{{ select(1) }}
- 正确
- 错误
下列代码执行后,输出结果为 30。
queue<int> q;
q.push(10);
q.push(20);
q.push(30);
q.pop();
cout << q.front();
{{ select(1) }}