write a c program reads a 5 digitnumbers and then read a single digit book and determines how many times that single digit no occurs in 5 digit nos
Answers
Answered by
1
Explanation:
#include<stdio.h>
int is_Palindrome( int );
int main()
{
int n;
printf( "Input a five-digit number: " );
scanf("%d", &n);
if(is_Palindrome(n))
printf("%d is a palindrome.", n);
else
printf("%d is not a palindrome.", n);
return 0;
}
int is_Palindrome(int n) {
int x = n;
int reverse_num = 0;
reverse_num += x/10000;
x = x - ((x / 10000) * 10000);
reverse_num += ((x/1000) * 10 );
x = x - ((x / 1000) * 1000);
reverse_num += ((x/100) * 100 );
x = x - ((x / 100) * 100);
reverse_num += ((x/10) * 1000 );
x = x - ((x / 10) * 10);
reverse_num += ((x%10) * 10000 );
return n==reverse_num;
}
Answered by
1
Answer:
that answer is a 99999
Similar questions
English,
2 months ago
Political Science,
2 months ago
Math,
2 months ago
Psychology,
5 months ago
Math,
9 months ago
Math,
9 months ago
Math,
9 months ago