Quick actions

cmd+k|ctrl+k

Navigation

Languages

Задача №142

Snippet info

Language

Cpp

Visibility

public

Author

diety

Created

2018-10-10T09:27:10Z

Updated

2018-10-21T10:42:23Z

#include <iostream>
#include "cmath"

using namespace std;

int main() 
{
    int x;
    cin >> x;
    if (x % 4 == 0)
    {
        cout <<"Год высокосный";
    }
    else
    {
        cout <<"Год невысокосный"<< endl;
    }
    return 0;
}
INFO