코드업 100제 11~13강
''' 세 정수 a, b, c가 입력되었을 때, 짝수만 출력해보자. ''' a, b, c = map(int, input().split()) if not a%2: print(a) if not b%2: print(b) if not c%2: print(c) ''' 세 정수 a, b, c가 입력되었을 때, 짝(even)/홀(odd)을 출력해보자. ''' a, b, c = map(int, input().split()) print('odd' if a%2 else 'even') print('odd' if b%2 else 'even') print('odd' if c%2 else 'even') ''' 정수 1개가 입력되었을 때, 음(minus)/양(plus)과 짝(even)/홀(odd)을 출력해보자. ''' x = in..
2022. 2. 6.
코드업 100제 7장-10장(임시)
7장 ''' 두 정수(a, b)를 입력받아 a가 b보다 크면 1을, a가 b보다 작거나 같으면 0을 출력하는 프로그램을 작성해보자. ''' a, b = map(int, input().split()) if a > b: print( 1 ) elif a y and x or y ) ''' 입력된 세 정수 a, b, c 중 가장 작은 값을 출력하는 프로그램을 작성해보자. (단, 삼항 연산자 이용) ''' a, b, c = map(int, input().split()) num = a if a
2022. 1. 30.