1 条题解

  • 1
    @ 2025-7-25 9:23:31

    #include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; if(n%2==0) { cout << "even" << endl; } if(n%2!=0) { cout << "odd" << endl; } return 0; }

    • 1

    信息

    ID
    586
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    递交数
    67
    已通过
    32
    上传者