A number is palindrome if it reads the same from right to left and from left to right. For example, 121 is a palindrome but 443 is not. We would like to have program that generates a 3-digits random integer number and determines whether it is a palindrome number. Design an algorithm to solve the problem, use pseudocode to represent your algorithm? use java



Answer :

Other Questions