PAT甲级 1001. A+B Format (20)

2018-06-17 23:26:52来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

题目原文:

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

题目意思:
输入俩int型数字,对数字大小范围有规定,计算和,并且按照标准格式输出。标准格式为:从末尾数字开始数,每隔三个有一个","号,如果数字本来就不足四位,则前面不加","号。


题解:
计算俩数字和之后,转换成string型,由于数字长度也不大,于是把数字给分解了,放到一个map里,看代码23和24行,比如最后一位就是m[1]="X",这样再输出的时候,如果m[i]的i值为3的倍数且小于str去除"-"号之后的长度,则加","输出。
 1 #include <iostream>
 2 #include <map>
 3 #include <strstream>
 4 using namespace std;
 5 map <int,string> m;
 6 int main()
 7 {
 8     int a,b;
 9     while(cin>>a>>b){
10         int sum = a+b;
11         //把int型的sum转换成string型的str
12         strstream ss;
13         string str;
14         ss << sum;
15         ss >> str;
16         int str_length = str.length();
17         if(sum<0){
18             str_length--;
19             //删除str的-号
20             str.erase(0,1);
21         }
22         //把str逆向输入到m[i]中,str最后一位是m[1]
23         for(int i=1; i<=str_length; i++){
24             m[i]=str.at(str_length-i);
25         }
26         if(sum<0) cout<<"-";
27         for(int i=str_length; i>=1; i--){
28             if(i%3==0&&i<str_length) cout<<","<<m[i];
29             else cout<<m[i];
30         }
31         cout<<endl;
32     }
33     return 0;
34 }

 代码:https://git.oschina.net/firstmiki/PAT-Advanced-Level-Practise

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:免费道路 BZOJ 3624

下一篇:FFmpeg滤镜实现区域视频增强 及 D3D实现视频播放区的拉大缩小