PAT甲级1001题(加法添逗)


1.题目介绍

1001

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


文章作者: Peyton
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 Peyton !
  目录