Drag the appropriate code blocks into the box below. Your program should check to see if a number is even and print "Even". If the number is odd, then print "Odd". Assume the variable x represents the number to be tested. Remember to indent your code! Drag from here {System.out.print("Even");} if(x % 2 = 0) else System.out.print(Odd); System.out.print(Even); {System.out.print("Odd");} if(x % 2 == 0) if(x / 2 == 0) Construct your solution here



Answer :

Other Questions