Untitled

Anonymous
c_cpp
11/25/2023 8:03 PM
308 B
16
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