![java_logo](https://www.jijichiz.com/wp-content/uploads/2015/06/java_logo-518x410.png)
College Basic Programming Activity Hi guys! I’m back and I’m going to share another programming problem and show the solution. Problem: Write a program which subtracts two integers without using minus (-) operator. Solution: Let’s use this algorithm: a – b = a + -1 * b Then, let’s convert to code: public static void […]