Editorial for Bedao Mini Contest 05 - DICE


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Code mẫu

#include <bits/stdc++.h>

using namespace std;
const string filename = "DICE";

int a[4] = {6, 4, 1, 3};
int n;

int main(int argc, char** argv)
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    freopen( (filename + ".inp").c_str(), "r", stdin);
    freopen( (filename + ".out").c_str(), "w", stdout);

    cin >> n;
    cout << a[(n - 1)%4];
}

Comments

Please read the guidelines before commenting.


There are no comments at the moment.