Răspuns:
#include <iostream>
using namespace std;
int estebisect(int n){
if ( n % 4 == 0 || n % 100 == 0 || n % 400 == 0 )
return 1;
return 0;
}
int main(){
int an;
cout << "Introduceti un an:";
cin >> an;
if (estebisect(an))
cout << "Anul este bisect\n";
else
cout << "Anul nu este bisect\n";
return 0;
}
Explicație: