本文主要是介绍【PAT】【Advanced Level】1001. A+B Format (20),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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 9Sample Output
-999,991
原题链接:
https://www.patest.cn/contests/pat-a-practise/1001
思路:
按要求分节并输出即可。
code:
#include<iostream>
#include<cstring>
#include<string>using namespace std;
int main()
{int a,b;cin>>a>>b;int c=a+b;string oup="";if (c<0){oup+='-';c*=-1;}string op="";if (c==0) op="0";int num=0;while (c>0){if (num%3==0&&num!=0) op=','+op;op=(char)(c%10+'0')+op;c/=10;num++;}op=oup+op;cout<<op;return 0;
}
这篇关于【PAT】【Advanced Level】1001. A+B Format (20)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!