Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
56613 laichihao 判断奇偶性 C++ 通过 0 MS 240 KB 188 2024-11-15 14:27:47

Tests(2/2):


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


测评信息: