Question: Course: C++ Exercise Using CodeBlocks, write a C++ program that reads three integers (a, b and c). The program should check if these three numbers

Course: C++ Exercise Using CodeBlocks, write a C++ program that reads three integers (a, b and c). The program should check if these three numbers fit with the operators: +-* / and /o, for e.g.: a + b = c. If any operator matches the numbers a, b, c then print that formula. If none of the operators fit, then the program should print the message "no match". Note that you must be especially careful not to divide with zero, if b-0, then skip the operators / and %. An example of how some runs look like 1 1112 52 111 12/5 2 5 5 10 5+5-10|1,1-1 5 5 10 |12 % 5-2 224 2+2-4 27-3 4 0 0 2* 2 4 k 4no match 4 * 0 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
