- 求整数n各个位上的数字之和
题解
- 2024-3-10 17:01:19 @
r+=n%10; n/=10;
2 条评论
-
guoshurui LV 7 @ 2024-8-2 21:38:52
#include<bits/stdc++.h> using namespace std; int main() { int n,maxn=0; cin>>n; while(n!=0){ maxn+=n%10; n/=10; } cout<<maxn; return 0; }
-
2024-8-2 21:37:48@
666
- 1
信息
- ID
- 921
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 2
- 标签
- 递交数
- 66
- 已通过
- 36
- 上传者