728x90
문제
https://www.acmicpc.net/problem/10869
코드
import sys
A, B = input().split()
x = int(A)
y = int(B)
print(x + y)
print(x - y)
print(x * y)
print(x // y)
print(x % y)
알게 된 것
python의 기본 나눗셈은 "/" 연산자를 사용하면 된다. 이때, 딱 나누어떨어지지 않을 경우 소수점까지 계산된다.
몫 연산자는 "//", 나머지 연산자는 "%"
반응형
'알고리즘 문제풀이 연습 > python' 카테고리의 다른 글
[python]백준 2480번 (0) | 2023.11.09 |
---|---|
[python]백준 1330 & 9498 (0) | 2023.11.02 |
[python]백준 2588번 (0) | 2023.10.29 |
[python]백준 10926번 (0) | 2023.10.19 |
[python]백준 1000번 (0) | 2023.10.18 |