Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
38509 奚晨瑞 判断奇偶性 C++ 通过 1 MS 240 KB 152 2024-01-27 16:02:04

Tests(2/2):


#include<iostream> using namespace std; int main() { int n; cin>>n; if(n%2==0){ cout<<"even"; } else{ cout<<"odd"; } return 0; }


测评信息: