Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question 2 A palindrome number is one that reads the same backward as forward. For example, each of the following integers is a palindrome: 9123219,
Question 2 A palindrome number is one that reads the same backward as forward. For example, each of the following integers is a palindrome: 9123219, 5555, 678876, 45554 and 161 Write a program that reads in a positive integer with minimum 2 digits and maximum 9 digits and determines whether it is a palindrome If the input is invalid, please keep on asking until you get the correct input Example 1: Bold means user input. Enter a positive integer with minimum 2 digits and maximum 9 digits: 6 Invalid input. Try again. Enter a positive integer with minimum 2 digits and maximum 9 digits: 1234567890 Invalid input. Try again Enter a positive integer with minimum 2 digits and maximum 9 digits: 6210126 Your integer 6210126 is palindrome Example 2: Bold means user input. Enter a positive integer with minimum 2 digits and maximum 9 digits: -100 Invalid input. Try again. Enter a positive integer with minimum 2 digits and maximum 9 digits: 12345 Your integer 12345 is not palindrome Hint 1: If needed, you can use the following function to determine the number of digits in an integer. // You need to declare #includecmath // in order to use this function int getNoOfDigit(int num) return int (log10 (num)) + 1; Hint 2: If needed, you can use the built-in function pow(base, exponent), which is also in the library For example, pow(1e, 3) will give you the value 1000
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started