|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 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)位开始.
完毕,代码如下:
|
评分
-
查看全部评分
|