1.题目介绍
2.考察点,难度
字符串处理类,隔三位添加逗号,难度易
3.解题代码
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main(){
int a,b;
scanf("%d %d",&a,&b);
int sum=a+b;
string end=to_string(sum);
int fuhao, count;
sum>=0? fuhao=0 : fuhao=1;
count=(end.length()-fuhao-1)/3 ;
for(int i=0;i<count;i++){
end.insert(-3*(i+1)+end.length()-i, ",");
}
cout<<end<<endl;
return 0;
}
4.原题地址
https://pintia.cn/problem-sets/994805342720868352/problems/994805528788582400