Write a Java program named BinaryConversion that will convert
base 2 numbers to base 10 numbers.
The data for this program will be entered from the keyboard
using JOptionPane one 16-bit binary number at a time. Note that
each base 2 number is actually read in as a String. The program
should continue until a 16-bit base 2 number consisting of all 0’s
is entered.
Once the 16-bit number has been entered your program should make
sure that the input...