목록BOJ_백준 (122)
haju__log
https://www.acmicpc.net/problem/8393 8393번: 합 n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오. www.acmicpc.net n = int(input()) total =0 for i in range(1,n+1): total += i print(total)
https://www.acmicpc.net/problem/10950 10950번: A+B - 3 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net T = int(input()) for i in range(T): A,B = map(int, input().split()) print(A+B)
https://www.acmicpc.net/problem/2739 2739번: 구구단 N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다. www.acmicpc.net N = int(input()) for i in range(1,10): print("%d * %d = %d" %(N,i,N*i))
https://www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net s = int(input()) if s>=90: print("A") elif s>=80: print("B") elif s>=70: print("C") elif s>=60: print("D") else : print("F")