Skip to content

Commit 620f3e0

Browse files
committed
Added 1369A - FashionabLee.cpp
1 parent 7f6d2d6 commit 620f3e0

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: 1369A - FashionabLee.cpp

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#include<bits/stdc++.h>
2+
using namespace std;
3+
4+
// Code Written By: Vikash Patel
5+
6+
// Codeforces Profile: https://codeforces.com/profile/vikashpatel
7+
8+
int main()
9+
{
10+
int t;
11+
cin>>t;
12+
while(t--)
13+
{
14+
int n;
15+
cin>>n;
16+
if(n%4==0)
17+
cout<<"YES"<<endl;
18+
else
19+
cout<<"NO"<<endl;
20+
}
21+
}

0 commit comments

Comments
 (0)