Question: Write in java a recursive method to print the multiples of 10 for a given positive number . The output should be a comma separated
Write in java a recursive method to print the multiples of 10 for a given positive number . The output should be a comma separated list as demonstrated in the following example: Example: multpiPlesOfTen(43) Answer: 10,20,30,40 Example: multpiPlesOfTen(4) Answer:0
Note:using recursion only
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
