Computer Science, asked by pandeyranjita1, 9 months ago

Write a program to to check whether a number is automorphic or not using return type programming I will mark you as brainliest....

Answers

Answered by mahenderkaur055
0

Explanation:

.

Implementation of this concept is shown below :

import java. util. Scanner;

class example.

{

static void check(int number)

{

int unit_digit1=number%10;

int square=number*number;

int unit_digit2=square%10;

Similar questions