Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Given two non-negative integers represented as string, return their sum

Java Basic: Exercise-189 with Solution

Write a Java program to given two non-negative integers num1 and num2 represented as string, return the sum of num1 and num2.

Pictorial Presentation:

Java Basic Exercises: Given two non-negative integers represented as string, return their sum

Sample Solution:

Java Code:

import java.util.*;
public class Solution {
 public static void main(String[] args) {
  String n1 = "123";
  String n2 = "456";
  System.out.println("'" + n1 + "'" + " + " + "'" + n2 + "'" + " = " + addStrings(n1, n2));
 }
 public static String addStrings(String n1, String n2) {
  int[] x = str_num(n1);
  int[] y = str_num(n2);
  int[] sum = new int[Math.max(x.length, y.length) + 1];
  int z = 0;
  int index = sum.length - 1;
  int i = 0;
  int j = 0;
  while (index >= 0) {
   if (i < x.length) {
    z += x[i++];
   }
   if (j < y.length) {
    z += y[j++];
   }
   sum[index--] = z % 10;
   z /= 10;
  }
  StringBuilder sb = new StringBuilder(sum.length);
  for (i = (sum[0] == 0 ? 1 : 0); i < sum.length; ++i) {
   sb.append(sum[i]);
  }
  return sb.toString();
 }

 private static int[] str_num(String num) {
  char[] digits = num.toCharArray();
  int[] number = new int[digits.length];
  int index = number.length - 1;
  for (char digit: digits) {
   number[index--] = digit - '0';
  }
  return number;
 }
}

Sample Output:

'123' + '456' = 579

Flowchart:

Flowchart: Java exercises: Given two non-negative integers represented as string, return their sum

Java Code Editor:

Company:  Google Airbnb

Contribute your code and comments through Disqus.

Previous: Write a Java program to find all the start indices of a given string's anagrams in another given string.
Next: Write a Java program to find the missing string from two given strings.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe