qkk 发表于 2017-7-11 19:05:30

PAT练习笔记——1001. A+B Format (20)

本帖最后由 qkk 于 2017-7-12 15:16 编辑

前言:
考研党一名,坚持每天一题PAT,希望各路大佬多多指教。

正文
1001. A+B Format (20)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue
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

思路:
加法运算难点:格式化输出。
因为要对数字进行位数判断,就直接转换成对字符串处理。

第一步:
计算sum=a+b,如果为负输出“-”,并取反。
第二步:
用sprintf把sum转换成字符串,并计算其长度len
第三步:
从最高位到最低位依次输出,当(9 - len + 1 + i)% 3== 0时,输出分隔符“,”。
说明:因为分隔符是从最低位开始计算,每三位出现一次。题目中所给范围确定最终结果
不会超过9位,所以假设结果固定9位,所以第3,6位后有分隔符。
(9 - len + 1) 表示这个数从(9 - len + 1)位开始.
完毕,代码如下:
**** Hidden Message *****

mlgbdqq 发表于 2017-7-11 22:57:29

好东西啊,谢谢楼主分享

Shadow_ZED 发表于 2017-7-12 04:29:52

这是练习题吗

qkk 发表于 2017-7-12 11:22:34

Shadow_ZED 发表于 2017-7-12 04:29
这是练习题吗

是的,甲级练习题。
页: [1]
查看完整版本: PAT练习笔记——1001. A+B Format (20)