본문 바로가기
공부/데이터사이언스

[백준] 2단계 - 2735번 (C++)

by PYo 2022. 6. 19.
반응형

 

 

2753번

https://www.acmicpc.net/problem/2753

 

 

 

 

#include <stdio.h>

int main(){
    int year;
    int ans=0;
    scanf("%d", &year);
    if ((year%4 == 0)&&((year%400==0)||(year%100!=0))){
        ans = 1;
    }
    printf("%d", ans);

    return 0;
}

 

 

반응형

댓글