write a java program that will prompt the user for an integer. the program will determine how many digit of that integer are odd. the numbers 0, 2, 4, 6, and 8 are even digits, and 1, 3, 5, 7, 9 are odd digits. you may not use a string to solve this problem, else receive zero credit for this assignment. use the modulo operator % to get the rightmost digit, and / to discard the rightmost digit. a loop should be used in order to get from step 8 to step 3 in the roadmap. (steps 3 through 9 should be in a while loop, with the condition for the loop being input !