Open In App

Arithmetic Expression Having Only + and * Operators in Java

Improve
Improve
Like Article
Like
Save
Share
Report

Here, we will discuss the Arithmetic expression having operators like addition and multiplication and you will see how you can take an expression and can calculate the value with the help of the program. 

Given an expression having only + and * operators, the task is to evaluate the String expression and find its output. In this, it’s a simple java program to implement in which expression containing only addition(+) and multiplication(*) operators.

Example 1:

Input: 1+2*3+4*5*6
Output: 127
Explanation: According to BODMAS, multiplication is evaluated 
             first giving an expression as: 1+6+120. 
Finally the sum is 127.

Example 2:

Input: 2*3*4
Output: 24

Example 3:

This is how below given java program will take the string as input and split on the basis of operators like addition(+) and multiplication(*). 

1+2*3+4*5*6
|1|+|2*3|+|4*5|*6|
|1|+|6|+|20|*6
|1|+|6|+|120| = 127  

Approach :

  1. Split the string with regex matching + sign
  2. Thus, every element in the resultant String array has either a single number or an expression of products.
  3. Now traverse through the array to find indices having products.
  4. Split the product expression with regex matching * sign
  5. Now multiply every number that was split using * sign in Step 4.
  6. Finally, every index has only numbers that need to be added for the final evaluation of an expression.
  7. Add integers at all indices in the array received after Step 1.
  8. The sum gives the final result of the expression string.

Below is the implementation of the above approach:

Java




import java.io.*;
  
class GFG {
  
    static int calculator(String str)
    {
        // Split expression string using + operator.
        // Now every index will have either an integer or an
        // expression of only products.
        String[] arr = str.split("\\+");
  
        for (int i = 0; i < arr.length; i++) {
            int result = 1;
  
            // If index contains * sign,
            // split expression using *
            if (arr[i].contains("*")) {
                String[] num = arr[i].split("\\*");
  
                // Multiply each number separated by * and
                // store final product in 'result' variable
                for (int j = 0; j < num.length; j++) {
                    result *= Integer.parseInt(num[j]);
                }
  
                // Store resultant product value in the
                // array index. For ex: index having 2*3 is
                // replaced by 6 and index having 4*5*6 is
                // replaced by 120.
                arr[i] = String.valueOf(result);
            }
        }
  
        // Now every array index has a
        // single integer as element.
        int len = arr.length;
        int sum = 0;
  
        // Calculate the sum of all elements
        // of array to get final result.
        for (int i = 0; i < len; i++) {
            sum += Integer.parseInt(arr[i]);
        }
  
        // Return the final result
        return sum;
    }
  
    public static void main(String[] args)
    {
        // Expression string is: 1+2*3+4*5*6
        System.out.println(calculator("1+2*3+4*5*6"));
    }
}


Output :

127


Last Updated : 13 Oct, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads