Write a method that finds each occurrence of abc_ in a String input (where _ is a single character) and prints bc_ for each such occurrence. For example, findAbc(abcdefabcghi) should print:

Example: Write a JAVA method that expands a given binomial (ax + by)n, where integers a, b, n are user inputs. For example, if a = 2, b = -12, n = 4 are entered the method should print or return

Write a JAVA method that expands a given binomial (ax + by)n, where integers a, b, n are user inputs.  For example, if a = 2, b = -12, n = 4 are entered the method should print or return