PAT甲级 1001. A+B Format (20)
2018-06-17 23:26:52来源:未知 阅读 ()
题目原文:
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
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 算法笔记刷题6 ( PAT 1003我要通过 ) 2020-05-08
- windows10环境下QtCreator中出现skipping incompatible xxx 2020-03-31
- [Uva1637][DFS][记忆化] 纸牌游戏 Double Patience 2020-03-06
- A - A Compatible Pair-biaobiao88 2019-10-29
- PAT甲级1006水题飘过 2019-10-09
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash