Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Make sure the solution contains the keyword _ _ define - ocg _ _ in at least one comment in the code, and

Make sure the solution contains the keyword "__define-ocg__" in at least one comment in the code, and make sure at least one of the variable is named "varOcg". Have the function MathChallenge(str) take the str parameter, which will be a simple mathematical formula with three numbers, a single operator (+,-,*, or /) and an equal sign (=) and return the digit that completes the equation. In one of the numbers in the equation, there will be an x character, and your program should determine what digit is missing. For example, if str is "3x +12=46" then your program should output 4. The x character can appear in any of the three numbers and all three numbers will be greater than or equal to 0 and less than or equal to 1000000.
Examples
Input: "4-2= x"
Output: 2
Input: "1x0*12=1200"
Output: 0
import java.util.*;
import java.io.*;
class Main {
public static String MathChallenge(String str){
// code goes here
return str;
}
public static void main (String[] args){
// keep this function call here
Scanner s = new Scanner(System.in);
System.out.print(MathChallenge(s.nextLine()));
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Big Data, Mining, And Analytics Components Of Strategic Decision Making

Authors: Stephan Kudyba

1st Edition

1466568704, 9781466568709

More Books

Students also viewed these Databases questions

Question

Imagine you remain in the job listed under point

Answered: 1 week ago