1 条题解

  • 1
    @ 2025-5-25 10:55:59

    #include<bits/stdc++.h>

    using namespace std;

    int main()

    {

    int n;

    cin >> n;

    if(n%2==0)

    {

    cout<<"even";

    }

    else

    {

    cout<<"odd";

    }

    return 0;

    }

    • 1

    信息

    ID
    45
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    262
    已通过
    126
    上传者