Write a program in c++ to find the the Authomorphic numbers between 1 to 1000
- برمجة سي c
- برمجة
- 2021-05-11
- MarwaMohammed
الأجوبة
# include <stdio.h>
# include <stdlib.h>
# include <stdbool.h>
bool chkAutomor(int num1)
{
int sqno = num1 * num1;
while (num1 > 0)
{
if (num1 % 10 != sqno % 10)
return false;
num1 /= 10;
sqno /= 10;
}
return true;
}
int main()
{
int i;
printf("\n\n Find the the Authomorphic numbers between 1 to 1000 \n");
printf(" -------------------------------------------------------\n");
printf(" The Authomorphic numbers are: ");
for(i=1;i<=1000;i++)
{
if( chkAutomor(i))
printf("%d ",i);
}
printf("\n");
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال