-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10260.c
71 lines (69 loc) · 1.47 KB
/
10260.c
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
65
66
67
68
69
70
71
#include <stdio.h>
#include <string.h>
main()
{
char a[21];
int i,j,k,l;
while(gets(a))
{
j=0;
l=strlen(a);
for(i=0;i<l;i++)
{
if(a[i]=='B' || a[i]=='P' ||a[i]=='F' || a[i]=='V')
{
if(j!=1)
{
printf("1");
j=1;
}
}
else if(a[i]=='C'||a[i]=='G' || a[i]=='J'||a[i]=='K'||a[i]=='Q'||a[i]=='S'||a[i]=='X'||a[i]=='Z')
{
if(j!=2)
{
printf("2");
j=2;
}
}
else if(a[i]=='D' || a[i]=='T')
{
if(j!=3)
{
printf("3");
j=3;
}
}
else if(a[i]=='L')
{
if(j!=4)
{
printf("4");
j=4;
}
}
else if(a[i]=='M'||a[i]=='N')
{
if(j!=5)
{
printf("5");
j=5;
}
}
else if(a[i]=='R')
{
if(j!=6)
{
printf("6");
j=6;
}
}
else
{
j=7;
}
}
printf("\n");
}
return 0;
}