Java: Find next smallest palindrome
Java Math Exercises: Exercise-22 with Solution
Write a Java program to find the next smallest palindrome.
Sample Solution:
Java Code:
import java.util.*;
class solution {
public static int nextPalindromeGenerate(int n)
{
int ans=1, digit, rev_num=0, num;
//For single digit number, next smallest palindrome is n+1
if(n<10)
{
ans=0;
return n+1;
}
num=n;
while(ans!=0)
{ rev_num=0;digit=0;
n=++num;
while(n>0) //rev_numersing the number
{
digit=n%10;
rev_num=rev_num*10+digit;
n=n/10;
}
if(rev_num==num)
{
ans=0;
return num;
}
else ans=1;
}
return num;
}
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.print("Input the number: ");
int n = scan.nextInt();
if (n>0)
{
System.out.println("Next smallest palindrome:" + nextPalindromeGenerate(n));
}
}
}
Sample Output:
Input the number: 121 Next smallest palindrome:131
Flowchart:
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program to find the number which has the maximum number of distinct prime factors in a given range.
Next: Write a Java program to compute the result from the innermost brackets.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/math/java-math-exercise-22.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics