목록CodeUp (56)
Note
[codeup] 126. 당신의 사주를 봐 드립니다 2
a,b,c = map(int, input().split()) n = int((a+b+c)/100) if n%2 == 0: print('대박') else: print('그럭저럭')
etc/Coding Test
2022. 1. 25. 00:00
[codeup] 125. 당신의 사주를 봐 드립니다 1
a,b,c = map(int,input().split()) if (a-b+c)%10==0: print("대박") else: print("그럭저럭") a,b,c = map(int,input().split()) n = a-b+c n2 = [int(n) for n in str(n)] if n2[-1] == 0: print('대박') else: print('그럭저럭')
etc/Coding Test
2022. 1. 24. 01:59
[codeup] 124. 홀수와 짝수 그리고 더하기
a,b = map(int, input().split()) if a%2 == 1: if b%2 == 1: print('홀수+홀수=짝수') else: print('홀수+짝수=홀수') else: if b%2 == 0: print('짝수+짝수=짝수') else: print('짝수+홀수=홀수')
etc/Coding Test
2022. 1. 23. 02:51
[codeup] 123. 아르바이트 가는 날
n = int(input()) if n%2 == 1: print('oh my god') elif n%2 == 0: print('enjoy')
etc/Coding Test
2022. 1. 22. 02:03
[codeup] 122. 특별한 공 던지기 3
n = int(input()) if 50
etc/Coding Test
2022. 1. 21. 17:10