| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 122763 | 林扬皓bylz | 数字求和 | C++ | Accepted | 100 | 0 MS | 248 KB | 152 | 2024-01-22 16:40:43 |
#include<iostream> using namespace std; int main() { int a,b,c,num; cin>>num; a=num/100; b=num/10%10; c=num%100%10; cout<<a+b+c<<endl; }