Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Find the Authomorphic numbers between 1 to 1000

C++ Numbers: Exercise-25 with Solution

Write a program in C++ to find the Authomorphic numbers between 1 to 1000.

Sample Solution:

C++ Code :

#include<iostream>
using namespace std;
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;
 cout << "\n\n Find the the Authomorphic numbers between 1 to 1000 \n";
 cout << " -------------------------------------------------------\n";
 cout << " The Authomorphic numbers are: "<<endl;
	for(i=1;i<=1000;i++)
	{
      if( chkAutomor(i))
        cout << i<<" ";
	}
cout<<endl;
}

Sample Output:

Find the the Authomorphic numbers between 1 to 1000                                                 
 -------------------------------------------------------                                             
 The Authomorphic numbers are:                                                                       
1 5 6 25 76 376 625

Flowchart:

Flowchart: Find the the Authomorphic numbers between 1 to 1000

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to check if a number is Authomorphic or not.
Next: Write a program in C++ to check whether a number is a Duck Number or not.

What is the difficulty level of this exercise?