how can program polindrome using java



how can program polindrome using java..

Answer / mahesh

import java.lang.*;
class Plindrome
{
public static void main(String arg[])
{
int n=121,m;
int rev,rem;
rev=0;m=n;
while(n>0)
{
rem=n%10;
rev=rev*10+rem;
n=n/10;
}
if(m==rev)
{
System.out.println("palindrome",+rev);
}
else
{
System.out.println("not palindrome",+rev);
}
}
}

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Java Related AllOther Interview Questions

Why do we create dto in java?

0 Answers  


Describe life cycle of thread?

0 Answers  


can a program use more than one command-line argument?

0 Answers  


In an htm form i have a button which makes us to open another page in 15sec.how will you do that?

0 Answers  


Does jvm maintain a cache by itself? Does the jvm allocate objects in heap? Is this the os heap or the heap maintained by the jvm? Why

0 Answers  


What is jpa project?

0 Answers  


How long can a lambda function run?

0 Answers  


What is flatmap in rxjs?

0 Answers  


What is jdk for netbeans ide?

0 Answers  


How can I write a program that takes command line input?

0 Answers  


What about products that claim to block java applets at a firewall? : java security

0 Answers  


What is class path in java?

0 Answers  


Categories