Baekjoon 문제 풀기 (5522번 : 카드 게임)Python
5522번 : 카드 게임
1. 문제읽기
단순한 덧셈 계산
2. 제출 코드
두가지를 생각했는데, 뭘하든지 결과는 같은 것 같다.
- 그냥 단순 입력 받은 후 더하기
for문
으로 입력받아 더하기
a = int(input())
b = int(input())
c = int(input())
d = int(input())
e = int(input())
print(a+b+c+d+e)
i = 0
total = 0
for i in range(5):
a = int(input())
total += a
i += 1
print(total)
3. 공부할 것
p.s- 맞았습니다!!
라고 안나오고 100점
이라고 나와서 당황했다 ㅋㅋ
댓글남기기