Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5982 张昊然 【基础题】偶数 C++ Accepted 2 MS 724 KB 154 2021-02-10 17:35:06

Tests(4/4):


Code:

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