Tag Archives: palindrome program in java

Palindrome Number Program in C

A number is said to be palindrome if it satisfy’s a condition,the reverse of the number should be same as the original number.For finding the reverse of the given number we need to get the individual digits of given number … Continue reading

Posted in C | Tagged , , , , , , , , | 1 Comment

Java program to check Armstrong number

A number is called as ARMSTRONG number if,sum of cube of every digit present in the number is equal to the number itself then that number is called as armstrong number.For example the 153 is a armstrong number because 1^3+5^3+3^3=153. … Continue reading

Posted in Java | Tagged , , , , , , , , , , , | Leave a comment

Prime number program in JAVA

Let us make another basic program in JAVA.i.e finding the prime numbers in the given list.We know that a number is called as prime number if it is divisible by one and itself only.Therefore to check whether a number is … Continue reading

Posted in Java | Tagged , , , , , , , , , , , , , , , , , , , | Leave a comment