Python2 백준 기초 (while 문) 10052번 do while이 없다는게 슬프다 while True: a, b = map(int, input().split()) if a == 0 and b == 0: break print(a+b) 10951번 처음으로 좀 어려웠다 문제가 무슨 뜻인지 이해못했음 그냥 무한루프 돌렸는데 런타임떠서 다시보니 거를거 거르란뜻인듯 try catch 인듯 아닌듯 while True: try: a, b = map(int, input().split()) print(a + b) except: break 1110번 생각 안하고 의식의 흐름대로 만듬 일의자리랑 더한거의 일의자리랑.. num = int(input()) temp = num count = 0 while True: newnum = (temp % 10)*10 + (.. 2020. 12. 18. 백준 기초(for 문) 2739번 여담이지만 난 아직도 구구단을 외우기보다는 그때 그때 계산해서 쓰는편이다 그래서 사칙연산이 느림 A = int(input()) for i in range(1, 10): print("{0} * {1} = {2}".format(A, i, i*A)) 10950번 count = int(input()) for i in range(0, count): plusA, plusB = map(int, input().split()) print(plusA + plusB) 8393번 이거 언어 성능 테스트할때 쓰는거 아닌가 count = int(input()) total = 0 for i in range(0, count+1): total += i print(total) 15552번 파이썬에서 빠르게 입력받으려면 sys.. 2020. 12. 18. 이전 1 다음