Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how can program polindrome using java

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What is ui framework in java?

878


Is it better to learn java or python?

912


Name primitive java types.

897


How do I start netbeans?

1036


How do I find jre version?

900


What is meant by rest api in java?

925


Why oracle type 4 driver is named as oracle thin driver?

837


What is type_scroll_insensitive in java?

896


What is the use of rs next () in java?

886


What is cmp in java?

933


Which type of stream is in java?

857


What is connection pooling in java?

957


Does netbeans need jdk?

877


Why doesn't lsdou work under windows nt? : java security

865


Can we write lambda without functional interface?

883