第一次提交的时候忽略了相加结果为0的情况
Calculate a + b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits).
Input
Each input file contains one test case. Each case contains a pair of integers a and b where -1000000 <= a, b <= 1000000. The numbers are separated by a space.
Output
For each test case, you should output the sum of a and b in one line. The sum must be written in the standard format.
Sample Input-1000000 9Sample Output
-999,991
#include<iostream> using namespace std; int main() { int a, b, c = 0, temp, arry[8]; cin >> a >> b; c = a + b; if (c < 0) temp = -c; else if (c == 0) { cout << 0; return 0; } else temp = c; int i = 0; for (; temp != 0; i++) { arry[i] = temp % 10; temp = temp / 10; } if (c < 0) cout << "-"; for (int j = i - 1; j >= 0; j--) { cout << arry[j]; if (j % 3 == 0 && j != 0) cout << ","; } return 0; }