Description: The following program takes an integer as input and checks to see if the number is a palindrome, i.e. the number reads the same forward and backward (eg. 12321) Primary Inputs: an Integer Primary Output: Determine if the input number is a palindrome or not. Platform Used: JDK 1.6 with Notepad. Java import java.io.*; class Palindrome { public static void ...