import java.util.Scanner; 2 3 4- public class java { 5 6 public static Integer myMethod(String repeatThisValue) { 7. 8 System.out.println("The computer wants you to enter the following binary number: " + repeatThisValue); 9 10 // Step 1. Add in a line here to accept a new Scanner object. 11 // You're done this before... var ... something something... Scanner(System.in); 12 13 // what goes here? 14 15 // Step 2. Tell Java that the thing you're going to scan in will be in Binary form (only 1's and O's) 16 // Object Name DOT useRadix( SOME_NUMBER); 17 // what number should you use in the parentheses? 2 for Binary. 18 19 // the scanned object should be in binary (Radix 2) 20 21 // Step 3. Scan the values from the user. It's going to return an Integer, not a String. 22 23 Integer binary Integer scannedObject.nextInt(); // capture the user entry as an Integer Object. 24 25 26 System.out.println("In this black VPL box, enter a binary number: "); 27 28 System.out.println("You entered " + binary Integer + which in binary is + Integer.toBinaryString(binaryInteger)); 29 30 return binaryInteger; 31 32 } 33 34 } =