swea2029번해답1 [swea - 파이썬] 2029. 몫과 나머지 출력하기 문제 2개의 수 a, b를 입력 받아, a를 b로 나눈 몫과 나머지를 출력하는 프로그램을 작성하라. 풀이 T = int(input()) for test_case in range(1, T + 1): # /////////////////////////////////////////////////////////////////////////////////// a,b=map(int,input().split()) quotient, remainder = a//b, a%b print("#{} {} {}".format(test_case, quotient, remainder)) # /////////////////////////////////////////////////////////////////////////////////.. 2021. 7. 20. 이전 1 다음