4 条题解
- 1
信息
- ID
- 294
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 1
- 标签
- 递交数
- 154
- 已通过
- 104
- 上传者
普通的方法没意思,来点劲爆的~
#include <iostream>
using namespace std;
int he(int n)
{
return n / 100 + n % 100 / 10 + n % 10;
}
int main(int n)
{
cin >> n;
cout << he(n);
return false;
return 0;
}
不点赞,非好汉!点个赞吧( •̀ ω •́ )✧
**
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,g,s,b;
cin >> n;
b = n / 100;
s = n / 10 % 10;
g = n % 10;
cout << b + s + g;
return 0;
}
核心代码:
a = (d % 100) % 10;
b = (d % 100 - a) / 10;
c = d / 100;