最近忽然想往算法方向走走,作了作航電acm的幾道題算法
二話不說,開始數組
航電acm 1002 題主要是處理長數據的問題,算法原理比較簡單,就是用字符數組代替int,由於int過短鬚要處理的數據較長spa
下面是問題描述:.net
下面列出個人代碼 參考http://blog.csdn.net/odaynot/article/details/8049632code
#include<stdio.h> #include<string.h> int toInt(char c){ return c-'0'; } int main(){ int i, n,j=1,al,bl,ml,t; char a[1000], b[1000];//存儲輸入的兩個數 int count[1001]; scanf("%d",&n); while(n--){ if(j!=1)printf("\n"); scanf("%s",a); al=strlen(a);//返回字符串結束符以前的字符個數 scanf("%s",b); bl=strlen(b); ml=(al>bl)?al:bl;//獲取較長的字符長度 t=ml; for(i=0;i<=ml;i++)count[i]=0;//初始化數組 for(ml;al>0&&bl>0;ml--){ count[ml]+=toInt(a[--al])+toInt(b[--bl]); if(count[ml]/10){ //處理進位問題 count[ml-1]++; count[ml]=count[ml]%10; } } while(al>0){ count[ml--]+=toInt(a[--al]); if(count[ml+1]/10){ count[ml]++; count[ml+1]%=10; } } while(bl>0){ count[ml--]+=toInt(b[--bl]); if(count[ml+1]/10){ count[ml]++; count[ml+1]%=10; } } printf("Case %d:\n%s + %s =",j++,a,b); for(i=0;i<=t;i++){ if(i==0&&count[i]==0){ i++; } printf("%d",count[i]); } printf("\n"); } return 0; }
歡迎批評,疑問請留言blog