Untitled

 avatar
unknown
c_cpp
2 years ago
231 B
2
Indexable
#include <iostream>

int main() {
	int t = 0;
	long long n = 0;
	std::cin >> t;

	for (int i = 0; i < t; i++) {
		std::cin >> n;
		if (n % 4) {
			std::cout << "NO";
		}
		else {
			std::cout << "YES";
		}
			
	}
}
Editor is loading...
Leave a Comment