forked from tarunguptaraja/Algorithms-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunique.cpp
More file actions
64 lines (62 loc) · 652 Bytes
/
unique.cpp
File metadata and controls
64 lines (62 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
long num;
char str[10];
int a[10]={0},flag=1,i=0;
cout<<"Enter any number:";
cin>>num;
itoa(num,str,10); //convert number to character array
while(str[i]!='\0')
{
switch(str[i])
{
case '0':
a[0]++;
break;
case '1':
a[1]++;
break;
case '2':
a[2]++;
break;
case '3':
a[3]++;
break;
case '4':
a[4]++;
break;
case '5':
a[5]++;
break;
case '6':
a[6]++;
break;
case '7':
a[7]++;
break;
case '8':
a[8]++;
break;
case '9':
a[9]++;
break;
}
i++;
}
for(i=0;i<10;i++)
{
if(a[i]>1)
{
flag=0;
break;
}
}
if(flag)
cout<<"\nNumber is Unique";
else
cout<<"\nNumber is Not Unique";
return 0;
}