Computer Science, asked by sim79, 1 year ago

write a program to find a unique number

Answers

Answered by ratnajitroy02
0

what kind of program java, c++,c etc.


Answered by Anonymous
2

import java.util.*;

class unique_number

{

public void main()

{

Scanner sc=new Scanner(System.in);

System.out.println("Enter a number to check whether it is unique number or not");

int n=sc.nextInt();

int cpy=n;

int d=0;

int c=0;

int flag=0;

for(int i=0;i<=9;i++)

{

n=cpy;

c=0;

while(n>0)

{

d=n%10;                

if(d==i)

{

   c++;

}

n=n/10;

}

if(c>1)

{

flag=1;

break;

}

}

if(flag==0)

{

System.out.println("Unique number");

}

else

{

System.out.println("Not a unique number");

}

}

}

Similar questions