Write a recursive method that parses a binary number as a string into a decimal integer. The method header is:
public static int binaryToDecimal(String binaryString)
Write a test program that prompts the user to enter a binary string and displays its decimal equivalent.