how can program polindrome using java
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 |
Why do we create dto in java?
Describe life cycle of thread?
can a program use more than one command-line argument?
In an htm form i have a button which makes us to open another page in 15sec.how will you do that?
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
What is jpa project?
How long can a lambda function run?
What is flatmap in rxjs?
What is jdk for netbeans ide?
How can I write a program that takes command line input?
What about products that claim to block java applets at a firewall? : java security
What is class path in java?