原题链接:https://www.patest.cn/contests/pat-a-practise/1001
1001. A+B Format (20)
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 9 Sample Output -999,991
题目是两数相加,按标准形式输出。 方法很多,择一即可,需要注意的是0和负数还有和的结果中间部分是0的情况。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include "stdio.h" int main(){ int a = 0; int b = 0; scanf("%d %d",&a,&b); int ans = a + b; int i = 0; int ansarr[5]; if(ans == 0) printf("0"); else{ if(ans < 0){ printf("-"); ans = -ans; } while(ans){ ansarr[i++] = ans % 1000; ans /= 1000; } printf("%d",ansarr[--i]); while(i--) printf(",%03d",ansarr[i]); } } |
发表评论:
评论列表: