분류 전체보기(166)
-
[Python] 윤년
# 정수 입력 받기# 윤년이면 1, 아니면 0 출력# 윤년 조건: 4의 배수 && 100의 배수가 아닐 때 || 400의 배수일 때x = int(input())if ((x % 4 == 0) and (x % 100 != 0) or (x % 400 == 0)): print('1')else: print('0')
2024.07.17 -
[Python] 시험 성적
# 정수 입력 받기# 조건에 맞게 성적 출력하기score = int(input())if (90 개선한 코드score = int(input())if score >= 90: print("A")elif score >= 80: print("B")elif score >= 70: print("C")elif score >= 60: print("D")else: print("F")
2024.07.17 -
[Python] 두 수 비교하기
# 두 정수 입력 받기(공백 한 칸으로 구분)# > b): print('>')elif (a == b): print('==')else: print('
2024.07.17 -
[Python] 개
print('|\_/|')print('|q p| /}')print('( 0 )\"\"\"\\')print('|"^"` |')print('||_/=\\\__|')
2024.07.17 -
[Python] 고양이
print('\\ /\\')print(' ) ( \')')print('( / )')print(' \(__)|')
2024.07.17 -
[Python] 꼬마 정민
# 숫자 3개 받기(공백 기준)# 더하고 출력a, b, c = map(int, input().split())print(a + b + c)
2024.07.17