CSC170 Assignment 4 You are to write a java application which allows the user to enter a non-negative integer at the keyboard. You will convert that integer into binary and output it on the terminal display. Ex: if input is 5, output is 101 if input is 42, output is 101010 Remember that the user is inputting a string. You have examples of how parseInt converts a string to an integer. Give serious thought to your algorithm for conversion *before* you start typing that program. You are not to use a built-in method but to actually write the code that will determine what the binary digits are. You may find some of the string methods discussed in class useful. Email your source code plus a short report, describing the classes and methods you wrote plus your conversion algorithm to your instructor by midnight Monday 27 October.