본문 바로가기

[Dev] 🎯Self Study

[백준] A+B (1000번) ~ 사칙연산

 

 

[파이썬 / Python] map(int, input().split())에 대해

제목의 식은 백준의 다른 문제를 풀이할 때 계속해서 사용하게 될 것이다. 따라서 좀 더 구체적으로 map(int, input().split()) 을 구성하는 함수들이 무엇이며 어떻게 변형할 수 있는지 알려드리고자

ccamppak.tistory.com

a,b = map(int,input().split())
print(a+b)

그리고 다른 사람이 쓴 한줄 답

print(sum(list(map(int,input().split()))))

 

 

사칙연산 틀린 이유

두 자연수 A와 B가 주어진다. 
이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. 

A,B = map(int,input().split())
print(A+B)
print(A-B)
print(A*B)
print(A/B)
print(A%B)

몫 + 소수점이 나와버려서

 

수정

A,B = map(int,input().split())
print(A+B)
print(A-B)
print(A*B)
print(A//B)
print(A%B)