A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a program in C++ to check if a number is Authomorphic or not
Q:

Write a program in C++ to check if a number is Authomorphic or not

0

Write a program in C++ to check if a number is Authomorphic or not

Sample Output:

Check whether a number is an Authomorphic Number or not:                                            
 ------------------------------------------------------------                                        
 Input a number: 25                                                                                  
 The given number is an Automorphic Number.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#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 auno;
 cout << "\n\n Check whether a number is an Authomorphic Number or not: \n";
 cout << " ------------------------------------------------------------\n";
 cout << " Input a number: ";
 cin >> auno;	
 
      if( chkAutomor(auno))
        cout << " The given number is an Automorphic Number."<<endl;
    else
        cout << " The given number is not an Authomorphic Number."<<endl;
    return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now