Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
123203 江婉儿 数字求和 C++ 通过 100 0 MS 232 KB 153 2024-01-22 17:28:43

Tests(2/2):


#include<bits/stdc++.h> using namespace std; int main() { int a,s=0; cin>>a; while(a!=0) { s+=a%10; a/=10; } cout<<s; return 0; }


测评信息: