Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
58864 段文昊 【基础题】偶数 C++ Accepted 3 MS 268 KB 145 2023-10-05 20:01:45

Tests(4/4):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a; cin>>a; if(a%2==0){ cout<<"yes"; } return 0; }