문제 링크입니다: www.acmicpc.net/problem/5522
5522번: 카드 게임
JOI군은 카드 게임을 하고 있다. 이 카드 게임은 5회의 게임으로 진행되며, 그 총점으로 승부를 하는 게임이다. JOI군의 각 게임의 득점을 나타내는 정수가 주어졌을 때, JOI군의 총점을 구하는 프
www.acmicpc.net
간단한 구현 문제였습니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
const int MAX = 5; | |
int main(void) | |
{ | |
ios_base::sync_with_stdio(0); | |
cin.tie(0); | |
int result = 0; | |
for (int i = 0; i < MAX; i++) | |
{ | |
int num; | |
cin >> num; | |
result += num; | |
} | |
cout << result << "\n"; | |
return 0; | |
} |


개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 6749번 Next in line (0) | 2021.03.06 |
---|---|
[JOI 예선] 백준 5554번 심부름 가는 길 (0) | 2021.03.06 |
백준 3046번 R2 (0) | 2021.03.06 |
백준 3003번 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2021.03.06 |
백준 2914번 저작권 (0) | 2021.03.05 |