分值 : 20 难度 : 简单题 思路 : A+B 然后递归打印就好了 坑点 : 每三个字节有一个 001 的问题,需要 %03d了解一下
123456789101112131415161718192021222324252627
#include <iostream>using namespace std ;void print(int c ){ int d = c /1000 ; if(d != 0 ) { print(d) ; printf(",%03d",c%1000); } else cout<< c%1000 ;}int main() { int a , b ; cin >> a >> b ; int c = a+b ; if(c<0) { cout<< "-" ; c = -c ; } print(c) ;}