반응형
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;
}
반응형
'공부 > 데이터사이언스' 카테고리의 다른 글
[백준] 3단계 - 1095번 (파이썬) check! (0) | 2022.06.20 |
---|---|
[백준] 3단계 - 1110번 (파이썬) check! (0) | 2022.06.20 |
[백준] 2단계 - 2753번 (파이썬) (0) | 2022.06.19 |
[백준] 2단계 - 2480번 (파이썬) (0) | 2022.06.19 |
[백준] 2단계 - 2884번 (파이썬) (0) | 2022.06.19 |
댓글