728x90

 

저는 요즘 c++ 를 공부중이기 때문에 c++ 답게 문제를 풀었습니다.

코드가 조금 못생겨도 이해해주세요

#include <iostream>
#include <vector>
using namespace std;

int main()
{
	int input;
	int result = 0;
	vector<int> array;
	cin >> input;
	for (int i=0; i<input; ++i)
	{
		int num;
		cin >> num;
		array.push_back(num);
	}
	for (auto value : array)
		result += value;
	cout << result << endl;
}

빈 배열을 생성하고 입력받은 숫자만큼 반복문을 돌아서 std::cin 으로 숫자를 입력받고 배열 에 추가하는 방식으로 해결했습니다.

728x90