3 solutions

  • 0
    @ 2022-4-5 1:37:10

    水题

    #include <iostream>
    using namespace std;
    int main()
    {
        int n = 0;
        cin >> n;
        int i = 1;
        while(i<=n)
        {
            if(i%2) cout << "签到" << endl;
            else cout << "QAQ" << endl;
            i++;
        }
        return 0;
    }
    

    Information

    ID
    26
    Time
    1000ms
    Memory
    256MiB
    Difficulty
    5
    Tags
    # Submissions
    561
    Accepted
    211
    Uploaded By