拼多多笔试题

#include
#include
#include
#include
using namespace std;

int main()
{
    int n;
    string m,temp;
    queue q1;
    char* a[4]= {"Alice","Bob","Cathy","Dave"};
    for(int i=0; i<4; i++)
        q1.push(a[i]);
    cin>>n;
    for(int i=0; i     {
        temp=q1.front();
        q1.pop();
        q1.push(temp);
        q1.push(temp);
    }
    cout<<"最后输出:"<     system("PAUSE");
    return 0;
}

你可能感兴趣的:(笔试题)