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