Run ID:156066
提交时间:2026-06-20 17:42:52
queue<int>q; q.push(1); q.push(2); q.push(3); cout<<q.size()<<endl; q.pop(); q.pop(); cout<<q.size()<<endl;