1 条题解

  • 0
    @ 2023-6-11 12:17:13

    C++ :

    #include<bits/stdc++.h>
    
    using namespace std;
    queue <string> q;
    int main()
    {
    	
        string s,name;
        while(cin>>s)
        {
            if(s == "PUSH")
            {
                cin>>name; 
                q.push(name);
            }
            if(s == "POP")
            {
                if(q.empty())
                {
                    cout<<"EMPTY"<<endl;
                }
                else
                {
                    cout<<q.front()<<endl;
                    q.pop();
                }
            }
            if(s == "END")
            {
                break;
            }
        }
        return 0;
    }
    
    
    • 1

    信息

    ID
    2409
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者