Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
46690 | yuzhengxun | 数位和为偶数的数 | C++ | 通过 | 0 MS | 240 KB | 269 | 2024-05-05 09:17:08 |
#include<bits/stdc++.h> using namespace std; bool panduan(int n){ int s=0; while(n){ s+=n%10; n/=10; } if(s%2==0) return 1; else return 0; } int main() { int n; cin>>n; for(int i=1;i<=n;i++){ if(panduan(i)) cout<<i<<" "; } return 0; }