문제 링크
and(&&), or(||) 을 사용하는 문제
#include <iostream> using namespace std; int main(){ int year; cin >> year; if((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) cout << '1' << endl; else cout << '0' << endl; return 0; }
정답.