题解
2023-12-12 19:22:22
发布于:广东
5阅读
0回复
0点赞
完整代码
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,s=0;
cin>>a>>b;
for(int i=a;i<=b;i++){
int t=i;
while(t){
s+=t%10;
t/=10;
}
}
cout<<s;
return 0;
}
DDDD
#include<bits/stdc++.h>
using namespace std;
int main(){
return 0;
}
然后列举a->b之间的所有整数
for(int i=a;i<=b;i++){
int t=i;
}
分解各位数值
while(t){
s+=t%10;
t/=10;
}
这里空空如也
有帮助,赞一个