728x90
코드업 파이썬 기초 100제 6061번 부터 6070번까지의 문제풀이
6061)
a, b=map(int, input().split())
print(a|b)
6062)
a, b=map(int, input().split())
print(a^b)
6063)
a, b=map(int, input().split())
if a>=b:
print(a)
else:
print(b)
6064)
a, b, c=map(int, input().split())
print((a if a<b else b) if (a if (a<b) else b)<c else c)
6065)
a, b, c=map(int, input().split())
if a%2==0:
print(a)
if b%2==0:
print(b)
if c%2==0:
print(c)
6066)
a, b, c=map(int, input().split())
if a%2==0:
print("even")
else:
print("odd")
if b%2==0:
print("even")
else:
print("odd")
if c%2==0:
print("even")
else:
print("odd")
6067)
n=int(input())
if n<0:
if n%2==0:
print("A")
else:
print("B")
else:
if n%2==0:
print("C")
else:
print("D")
6068)
n=int(input())
if n>=90:
print('A')
elif n>=70:
print('B')
elif n>=40:
print('C')
else:
print('D')
6069)
w=input()
if w=="A":
print("best!!!")
elif w=="B":
print("good!!")
elif w=="C":
print("run!")
elif w=="D":
print("slowly~")
else:
print("what?")
6070)
n=int(input())
if n//3==1:
print("spring")
elif n//3==2:
print("summer")
elif n//3==3:
print("fall")
else:
print("winter")
728x90
'프로그래밍 > Python(파이썬)' 카테고리의 다른 글
[백준] 10950: A+B-3 -python[파이썬] (0) | 2022.03.24 |
---|---|
[백준] 2739: 구구단-python[파이썬] (0) | 2022.03.24 |
[코드업:Code Up] 코드업 파이썬 기초 100제 6041~6060[python] (0) | 2022.03.23 |
[코드업:Code Up] 코드업 파이썬 기초 100제 6021~6040[python] (0) | 2022.03.23 |
[코드업:Code Up] 코드업 파이썬 기초 100제 6001~6020[python] (0) | 2022.03.23 |