Java: Check if a number is a strobogrammatic number
Check Strobogrammatic Number
Write a Java program to check if a number is a strobogrammatic number. The number is represented as a string.
According to Wikipedia "A strobogrammatic number is a number whose numeral is rotationally symmetric, so that it appears the same when rotated 180 degrees. In other words, the numeral looks the same right-side up and upside down (e.g., 69, 96, 1001). A strobogrammatic prime is a strobogrammatic number that is also a prime number, i.e., a number that is only divisible by one and itself (e.g., 11). It is a type of ambigram, words and numbers that retain their meaning when viewed from a different perspective, such as palindromes."
The first few strobogrammatic numbers are:
0, 1, 8, 11, 69, 88, 96, 101, 111, 181, 609, 619, 689, 808, 818, 888, 906, 916, 986, 1001, 1111, 1691, 1881, 1961, 6009, 6119, 6699, 6889, 6969, 8008, 8118, 8698, 8888, 8968, 9006, 9116, 9696, 9886, 9966, ...
Visual Presentation:

Sample Solution:
Java Code:
Sample Output:
Is 9006 is Strobogrammatic? true
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Java program to generate all strobogrammatic numbers of a specified length.
- Write a Java program to determine if a strobogrammatic number is also a prime number.
- Write a Java program to count the number of strobogrammatic numbers within a given range.
- Write a Java program to validate whether a number, including those with leading zeros, is strobogrammatic.
Java Code Editor:
Company: Google
Contribute your code and comments through Disqus.
Previous: Write a Java program to check if two given strings are isomorphic or not.
Next: Write a Java program to find the index of first non-repeating character in a given string.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics