Palindrome Numbers
Palindrome
number in c: A palindrome number is a number such that if we reverse
it, it will not change. For example some palindrome numbers examples are
121, 212, 12321, -454. To check whether a number is palindrome or not
first we reverse it and then compare the number obtained with the
original, if both are same then number is palindrome otherwise not. C
program for palindrome number is given below.
2. Reverse it.
3. Compare it with the number entered by the user.
4. If both are same then print palindrome number
5. Else print not a palindrome number.
Download Palindrome number program.
Output of program:
Palindrome number algorithm
1. Get the number from user.2. Reverse it.
3. Compare it with the number entered by the user.
4. If both are same then print palindrome number
5. Else print not a palindrome number.
Palindrome number program c
#include <stdio.h> int main() { int n, reverse = 0, temp; printf("Enter a number to check if it is a palindrome or not\n"); scanf("%d",&n); temp = n; while( temp != 0 ) { reverse = reverse * 10; reverse = reverse + temp%10; temp = temp/10; } if ( n == reverse ) printf("%d is a palindrome number.\n", n); else printf("%d is not a palindrome number.\n", n); return 0; }
Output of program:
No comments:
Post a Comment