BOJ 10951 - A+B - 4 https://www.acmicpc.net/problem/10951 BOJ 10951 - A+B - 4 작성언어: Python3while(True): try: num1, num2 = map(int, input().split()) print(num1 + num2) except EOFError: breakpc 환경에서 코드를 보는 것을 권장합니다. BOJ 11022 - A+B - 8 https://www.acmicpc.net/problem/11022 BOJ 11022 - A+B - 8 작성언어: Python3t = int(input())results = []for i in range(1, t+1): num1, num2 = map(int, input().split()) results.append('Case #' + str(i) + ': ' + str(num1) + ' + ' + str(num2) + ' = ' + str(num1+num2))for result in results: print(result)pc 환경에서 코드를 보는 것을 권장합니다. BOJ 11021 - A+B - 7 https://www.acmicpc.net/problem/11021 BOJ 11021 - A+B - 7 작성언어: Python3t = int(input())results = []for i in range(1, t+1): num1, num2 = map(int, input().split()) results.append('Case #' + str(i) + ': ' + str(num1+num2))for result in results: print(result)pc 환경에서 코드를 보는 것을 권장합니다. BOJ 10950 - A+B - 3 https://www.acmicpc.net/problem/10950 BOJ 10950 - A+B - 3 작성언어: Python3t = int(input())results = []for i in range(t): num1, num2 = map(int, input().split()) results.append(num1 + num2)for num in results: print(num)pc 환경에서 코드를 보는 것을 권장합니다. Codeup 1531 - [기초-함수작성] 함수로 정수(int) 1 리턴하기 https://codeup.kr/problem.php?id=1531 Codeup 1531 - [기초-함수작성] 함수로 정수(int) 1 리턴하기 작성언어: Cint f(){ return 1;}pc 환경에서 코드를 보는 것을 권장합니다. Codeup 1530 - [기초-함수작성] 함수로 문자 A 리턴하기 https://codeup.kr/problem.php?id=1530 Codeup 1530 - [기초-함수작성] 함수로 문자 A 리턴하기 작성언어: Cchar f(){ return 'A';}pc 환경에서 코드를 보는 것을 권장합니다. Codeup 1529 - [기초-함수작성] 함수로 문자 출력하기 https://codeup.kr/problem.php?id=1529 Codeup 1529 - [기초-함수작성] 함수로 **문자 출력하기 작성언어: Cvoid f(){ printf("%c%c", '*', '*'); return;}pc 환경에서 코드를 보는 것을 권장합니다. Codeup 1528 - [기초-함수작성] 함수로 문자 출력하기 https://codeup.kr/problem.php?id=1528 Codeup 1528 - [기초-함수작성] 함수로 *문자 출력하기 작성언어: Cvoid f(){ printf("%c\n", '*'); return;}pc 환경에서 코드를 보는 것을 권장합니다. 이전 1 ··· 3 4 5 6 7 8 9 ··· 36 다음 목록 더보기