2 条题解

  • 1
    @ 2026-7-4 15:10:35
    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
    	int a;
    	cin >> a;
    	if (a % 2 == 0) {
    		cout << "yes";
    	}
    	return 0;
    }
    
    
    

    新手专用

    • 0
      @ 2026-6-1 21:52:31

      #include <bits/stdc++.h> using namespace std;

      int main() { int a; cin >> a; if (a % 2 == 0) { cout << "yes"; } else { cout << ""; } return 0; }

      • 1

      信息

      ID
      30695
      时间
      1000ms
      内存
      256MiB
      难度
      5
      标签
      递交数
      18
      已通过
      15
      上传者