Write a function called numberPalindrome that expects a value and returns a Boolean result. A number palindrome is a number that is more than one digit in length and can be written forwards or backwards and still be of the same value. For example 1001 would fit the requirement of palindromic number but numbers such as 3 or 1002 would not.
Create file called numbers.txt and copy and paste these values
1011111101
2890221752
112121211
4436666344
2961464220
1460678119
4314426764
2869411930
1528832834
3808878782
2331991332
3761533887
1358430531
4874717034
2445302621
7655260477
9470895819
3711680373
1692449381
2076707645
4169883044
3215428081
282222182
2155669298
3487918063
1744114471
1385350930
1080568603
1829015748
2607117738
2178762817
1838558381
1363125906
293191392
3816147183
4997902994
2089009802
3060431637
3011124829
2864008461
3645391114
Using a file stream to read the numbers from the file and call the numberPalindrome function and as a result call a function to display the following information for the palindromic numbers. At the end of the run display a message informing the total count of numbers found that meet the condition (see Sample Run below).
Sample Run
Number : 1011111101 is a palindromic number.
Number : 112121211 is a palindromic number.
. . .
A total of XXX palindromic numbers was found.