Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
123110 | 黄子轩 | 数字求和 | C++ | 通过 | 100 | 0 MS | 248 KB | 288 | 2024-01-22 17:17:35 |
#include<iostream> #include<cstdio>//使用cin,cout,必须调用库iostream,否则编译出错 using namespace std; int main() { int a,b,c,d,e,f; cin>>d; e=d%100; f=e%10; a=(d-e)/100; b=(e-e%10)/10; c=f; cout<<a+b+c; return 0; }