-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBai101_SoDep3.cpp
57 lines (38 loc) · 873 Bytes
/
Bai101_SoDep3.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
57
#include<iostream>
#include<string.h>
#include<string>
using namespace std;
int charToInt(char c) {
return c - '0';
}
bool SNT(int n) {
if (n == 2 || n == 3 || n == 5 || n == 7)
return true;
return false;
}
bool KTSNT(string s) {
for (int i = 0; i < s.length(); i++)
if (SNT(charToInt(s[i]))== false)
return false;
return true;
}
bool soThuanNghich(string s, int length) {
for (int i = 0; i < length / 2; i++) {
if (s[i] != s[length - i - 1])
return false;
}
return true;
}
int main() {
int soBoTest;
cin >> soBoTest;
string str;
for (int k = 0; k < soBoTest; k++) {
cin >> str;
if (soThuanNghich(str, str.length()) && KTSNT(str))
cout << "YES" << endl;
else
cout << "NO" << endl;
}
return 0;
}