[PYTHON]백준_11021,11022

A+B - 7, 8

Posted by iheese on October 22, 2021 · 1 min read
#백준_11021
n=int(input())
for i in range(1,n+1,1):
 A,B=map(int, input().split())
 print("Case #%d:"%i,B+A) #""안에 %d는 정수,%s는 문자, %.2f 소수점 2개 실수 ""끝나고 바로 %변수명/ 여러개는 %(a,b)
#백준_11021
cases = int(input())

for i in range(cases):
    a,b = map(int, input().split())
    ans = a + b
    print("Case #%s: %s"%(i+1, ans )) #깔끔하게 풀이된 것.#s 문자열로 출력

    print(f"Case #{i+1}: {ans}")

for문을 이용해 값을 입력 받고 합을 출력하는 코드

print를 이용해 다양한 방법으로 출력했다.

print (f”출력하고 싶은 것”)에 관한 설명 7.1,1

#백준_11022
n=int(input())
for i in range(n):
  A,B=map(int, input().split())
  print("Case #%s: %s + %s = %s"%(i+1,A,B,A+B))

케이스별로 깔끔하게 합을 계산하는 문제!