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
题意:简单A+B,注意每三位数用逗号隔开
代码:#include <iostream> #include <cstdio> using namespace std; int main(){ int a,b,ans; cin>>a>>b; ans=a+b; int flag=1; int n1,n2,n3; n1=n2=n3=-1; if(ans<0) flag=-1; ans=ans*flag; n3=ans%1000; ans/=1000; if(ans>0){ n2=ans%1000; ans/=1000; if(ans>0) n1=ans%1000; } if(flag==-1) cout<<"-"; if(n1!=-1) printf("%d,",n1); if(n2!=-1&&n1!=-1) printf("%03d,",n2); else if(n2!=-1&&n1==-1) printf("%d,",n2); if(n2!=-1||n1!=-1) printf("%03d\n",n3); else printf("%d\n",n3); }
这是自己第一次ac的代码,略显麻烦。 用字符串处理时会更方便。
#include <iostream> #include <cstdio> using namespace std; int num[12]; int main(){ int a,b,ans,len=0; cin>>a>>b; ans=a+b; if(ans<0) { printf("-"); ans*=-1;} if(ans==0) num[len++]=0; while(ans){ num[len++]=ans%10; ans=ans/10; } for(int i=len-1;i>=0;i--){ printf("%d",num[i]); if(i%3==0&&i>0) printf(","); } }