-
Notifications
You must be signed in to change notification settings - Fork 9
/
Find your Partner.cpp
56 lines (54 loc) · 994 Bytes
/
Find your Partner.cpp
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
#include <iostream>
using namespace std;
class partner
{
public:
void findpartner()
{
int n;
cin >> n;
if (n % 8 == 0)
{
cout << n - 1 << "SU";
}
else if (n % 8 == 7)
{
cout << n + 1 << "SL" << endl;
}
else if (n % 8 == 6)
{
cout << n - 3 << "UB" << endl;
}
else if (n % 8 == 3)
{
cout << n + 3 << "UB" << endl;
}
else if (n % 8 == 5)
{
cout << n - 3 << "MB" << endl;
}
else if (n % 8 == 2)
{
cout << n + 3 << "MB" << endl;
}
else if (n % 8 == 4)
{
cout << n - 3 << "LB" << endl;
}
else if (n % 8 == 1)
{
cout << n + 3 << "LB" << endl;
}
}
};
int main()
{
int t;
cin >> t;
partner objname;
while (t--)
{
objname.findpartner();
}
return 0;
}