QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#626401#5732. Even or OddRebukedWA 0ms3508kbC++20290b2024-10-10 07:56:542024-10-10 07:56:55

Judging History

你现在查看的是最新测评结果

  • [2024-10-10 07:56:55]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3508kb
  • [2024-10-10 07:56:54]
  • 提交

answer

// Online C++ compiler to run C++ program online
#include <iostream>
#include <vector>
#include <map>

using namespace std;

int main() {
    int a;
    cin >> a;
    if(a==2) cout << "odd";
    if(a%2 == 0) cout << "even";
    if(a%2 == 1) cout << "either";

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3508kb

input:

1

output:

either

result:

wrong answer 1st lines differ - expected: 'Either', found: 'either'