Project 3 Details - convertToBinaryFromConsole
Write a program to get a string from the user (typed in) and convert that typed in string to binary. The output of the program is as follows:
==================================================
Please enter a string to convert to binary: Ryan
Ryan, [01010010,01111001,01100001,01101110]
Please enter a string to convert to binary: quiT
Goodbye...
==================================================
The program continues doing this until the user enters any variant of the string "QUIT", "Quit", "quit", "qUiT", etc.
The method System.in.read will allow you to get input from the user.
==================================================
Please enter a string to convert to binary: Ryan
Ryan, [01010010,01111001,01100001,01101110]
Please enter a string to convert to binary: quiT
Goodbye...
==================================================
The program continues doing this until the user enters any variant of the string "QUIT", "Quit", "quit", "qUiT", etc.
The method System.in.read will allow you to get input from the user.