| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140324 | 王顺煜 | 各个位数之和 | C++ | Compile Error | 0 MS | 0 KB | 168 | 2025-12-14 11:03:35 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; long long sum=0; cin>>n; white(n!=0){ sum+=n%10; n=n/10; } cout<<sum; return 0; }
Main.cc: In function 'int main()':
Main.cc:7:12: error: 'white' was not declared in this scope
white(n!=0){
^