Write a program in C to display and count the number of Lychrel numbers within a specific range(from 1 to a specific upper limit)
- برمجة سي c
- برمجة
- 2021-05-11
- MarwaMohammed
الأجوبة
# include <stdio.h>
# include <stdbool.h>
# include <stdlib.h>
bool palindrome ( unsigned long long int i );
unsigned long long int reverse ( unsigned long long int i );
bool lychrel ( unsigned long long int i );
int main ( void )
{
unsigned long long int i=0;
int count=0,ulmt;
printf("\n\n Display and count number of Lychrel numbers within a specific range: \n");
printf(" -------------------------------------------------------------------------\n");
printf(" Input the upper limit: ");
scanf("%d",&ulmt);
printf("\n The Lychrel numbers are: \n");
for(i=1;i<ulmt;i++)
{
if(lychrel(i))
{
printf(" %llu ",i);
count++;
}
}
printf("\n The number of Lychrel numbers are: %d\n\n",count);
return 0;
}
bool lychrel ( unsigned long long int i )
{
int j; /*iteration counter*/
bool lychrel = true;
i = i + reverse ( i );
for ( j = 1; j <= 30 ; j++ )
{
if ( palindrome ( i ) )
{
lychrel = false;
break;
}
i = i + reverse ( i );
}
return lychrel;
}
unsigned long long int reverse ( unsigned long long int i )
{
unsigned long long int ret = 0;
while ( i != 0 )
{
ret *= 10;
ret += i % 10;
i /= 10;
}
return ret;
}
bool palindrome ( unsigned long long int i )
{
return ( i == reverse ( i ) );
} أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال