码迷,mamicode.com
首页 > 其他好文 > 详细

HDU oj A + B Problem II

时间:2017-06-06 22:15:22      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:ring   字符串处理   while   处理   ble   include   rac   post   ret   

郁闷了就相同的代码在HDUOJ上提交就是AC在NYOJ上提交就是WA字符串处理

#include<stdio.h>
#include<string.h>
#define N 1000
char x[N],y[N];
int a[N+1];
int main()
{
 int g,h=0;
 scanf("%d",&g);
 while(g--)
 {
  int k1,k2,t=0,m,n,k,i,j,l;
  scanf("%s %s",x,y);
  k1=strlen(x);
  k2=strlen(y);
  for(i=k1-1,j=k2-1,l=0;i>=0&&j>=0;i--,j--,l++)
  {
   m=x[i]-48;
   n=y[j]-48;
   k=(m+n+t)%10;
   a[l]=k;
   t=(m+n+t)/10;
  }
  while(i>=0)
  {
       a[l++]=x[i--]-48+t;
       t=0;
  }
  while(j>=0)
  {
       a[l++]=y[j--]-48+t;
       t=0;
  }
  printf("Case %d:\n",++h);
  printf("%s + %s = ",x,y);
  for(i=l-1;i>=0;i--)
   printf("%d",a[i]);
  printf("\n");
  if(g) printf("\n");
 }
  return 0;
}
??


HDU oj A + B Problem II

标签:ring   字符串处理   while   处理   ble   include   rac   post   ret   

原文地址:http://www.cnblogs.com/slgkaifa/p/6953558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!