- Engineering
- Computer Science
- using visual studio 2017 create this program using c implement...
Question: using visual studio 2017 create this program using c implement...
Question details
Using Visual Studio 2017 Create This Program Using
C#
implement source code
Program 5: The concept of a 5-digit palindrome number is a 5-digit number that reads the same from left to right and from right to left. For example, 12121, 45454, and 14741 are valid 5-digit palindrome numbers. Design (pseudocode) and implement (source code) a program (name it FiveDigitPalindrom) that reads a 5-digit number from the user (as integer value, not string) and then mathematically (using division and remainder operations) determines whether the entered number is a 5-digit palindrome or not. Assume valid inputs are from 11111 to 9999. The program rejects any input outside that range with the message “Invalid 5-digit number. Try again”. Document your code and properly label the input prompts and the outputs as shown below.
Sample run 1:
Entered number: 6754
Judgment: Invalid 5-digit number. Try again
Sample run 2:
Entered number: 12321
Judgment: Valid 5-digit palindrome
Sample run 3:
Entered number: 12324
Judgment: Invalid 5-digit palindrome
Solution by an expert tutor
