LeetCode415. 字符串相加
给定两个字符串形式的非负整数 num1 和num2 ,计算它们的和。
提示:
num1 和num2 的长度都小于 5100
num1 和num2 都只包含数字 0-9
num1 和num2 都不包含任何前导零
你不能使用任何內建 BigInteger 库, 也不能直接将输入的字符串转换为整数形式
class Solution {
public String addStrings(String num1, String num2) {
StringBuilder res = new StringBuilder("");
int index1 = num1.length()-1;
int index2 = num2.length()-1;
int carry = 0;
while(index1>=0 || index2 >= 0)
{
int n1 = index1>=0? num1.charAt(index1)-'0' : 0;
int n2 = index2>=0? num2.charAt(index2)-'0' : 0;
int temp = n1+n2+carry;
carry = temp/10;
res.append(temp%10);
index1--;index2--;
}
if(carry==1)
res.append(1);
return res.reverse().toString();
}
}