Respuesta :
Answer:
hope my answer helps
Explanation:
Automorphic Number
Given a number N, the task is to check whether the number is Automorphic number or not. A number is called Automorphic number if and only if its square ends in the same digits as the number itself.
Examples :
Input : N = 76
Output : Automorphic
Explanation: As 76*76 = 5776
Input : N = 25
Output : Automorphic
As 25*25 = 625
Input : N = 7
Output : Not Automorphic
As 7*7 = 49
Explanation:
Automorphic Number
Given a number N, The method to check whether the numbers are Automorphic number or not.
A number is called Automorphic number only if its square ends in the same digits as the number itself.
Examples :
N = 6
Automorphic
Explaination :
As 6×6 = 36
N = 76
Automorphic
•As 76×76 = 5776
N = 25
Automorphic
•As 25×25 = 625