Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
443661 沈洛楠 【C2-10】奇怪的信 C++ 通过 100 1 MS 244 KB 163 2026-06-06 15:48:08

Tests(3/3):


#include<iostream> using namespace std; int main(){ int s=0,n; cin>>n; while(n){ if(n%10%2==0)s+=n%10; n/=10; } cout<<s<<endl; return 0; }


测评信息: