Solution to the problem number 114 of AceptaelReto - 114.

Any questions do not hesitate to contact.

#include <bits/stdc++.h>
using namespace std;

int main() {
    int T;
    cin >> T;
    while (T--) {
        int n; cin >> n;
        if (n == 0) cout << 1 << endl;
        else if (n == 3) cout << 6 << endl;
        else if (n < 5) cout << n << endl;
        else cout << 0 << endl;
    }

    return 0;
}

Don't miss anything.

Keep in touch with Isaac Lozano Osorio!