Question: use java programming language. Problem 3: Multiplication Table (10 points) Develop an algorithm that returns a String formatted as the multiplication table of N from

use java programming language.
Problem 3: Multiplication Table (10 points) Develop an algorithm that returns a String formatted as the multiplication table of N from 1 up to and including X. You can assume N will be a whole number and won't be large enough to cause overflow. You can assume that X will be a positive whole number greater than or equal to 1 Example output for N = 7, x = 9 72_-_14 73_21 74_28 75 35 7-8- 56 Note: As in previous problems, the underscores ("_") shoul be spaces (" ") and the arrows (" should be replaced with carriage returns. I've included them here to draw attention to the fact that there should be spaces between the characters. There should also be a newline after the last line
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
