Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
46955 老方 数位和为偶数的数 C++ 通过 0 MS 244 KB 212 2024-05-07 21:12:51

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ int t=i,sum=0; while(t){ sum+=t%10; t/=10; } if(sum%2==0)cout<<i<<' '; } return 0; }


测评信息: