1. 首页
  2. 编程语言
  3. C++ 
  4. C++大整数的加法通过字符数组实现

C++大整数的加法通过字符数组实现

上传者: 2020-08-20 14:01:58上传 CPP文件 955B 热度 19次
string plus_1(const string &a,const string &b) { string result; char ttemp[2]; int alen,blen,i,j; int add,temp; ttemp[1]='\0'; alen=a.size(); blen=b.size(); add=0; for(i=alen-1,j=blen-1;i>=0&&j>=0;i--,j--) { temp=add+((int)a[i]-48)+((int)b[j]-48); add=temp/10; ttemp[0]=temp%10+48;
用户评论
码姐姐匿名网友 2020-08-20 14:01:58

感觉非常好,比我们同学编写的好得多