[백준] #5613 계산기 프로그램 python
2023. 3. 2. 06:00
https://www.acmicpc.net/problem/5613
📕 설명 📕
사칙연산을 다음과 같이,
연산자 후 무조건 나오는 숫자 규칙으로 정리하여 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
res = int(input())
while True:
S = input()
if S == "=":
break
N = int(input())
if S == "+":
res += N
elif S == "-":
res -= N
elif S == "*":
res *= N
elif S == "/":
res //= N
print(res)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #6322 직각 삼각형의 두 변 python (0) | 2023.03.04 |
---|---|
[백준] #5704 팬그램 python (0) | 2023.03.03 |
[백준] #4880 다음수 python (0) | 2023.03.01 |
[백준] #4504 배수 찾기 python (0) | 2023.02.28 |
[백준] #4447 좋은놈 나쁜놈 python (0) | 2023.02.27 |