WAP in Java.............!!!!!
Attachments:
Answers
Answered by
5
hope it helps!
#sumedhian ❤❤
Attachments:
Answered by
0
Your answers is given below =》》》
Brainly User
import java.util.*;
class unique_number
{
public static void main(String args[ ])
{
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");
}
}
}
---------------------------------------------------------------------------------
OUTPUT :
Enter a number to check whether it is unique number or not
.....
Similar questions