Skip to content

Commit c96166c

Browse files
Codechef Tyres.cpp added
1 parent 8fa6721 commit c96166c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Codechef solutions/TYRES.cpp

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#include <bits/stdc++.h>
2+
using namespace std;
3+
// Contributed by Shrimad Bhagwat
4+
5+
int main() {
6+
int t;
7+
cin >> t;
8+
while(t--){
9+
int n;
10+
cin >> n;
11+
if(n%4==0){
12+
cout << "NO" << endl;
13+
}
14+
else{
15+
cout << "YES" << endl;
16+
}
17+
}
18+
return 0;
19+
}

0 commit comments

Comments
 (0)