codeup 1266
c++ 1266 : n개의 수의 합
c++ 1266 : n개의 수의 합
2020.11.03저는 요즘 c++ 를 공부중이기 때문에 c++ 답게 문제를 풀었습니다. 코드가 조금 못생겨도 이해해주세요 #include #include using namespace std; int main() { int input; int result = 0; vector array; cin >> input; for (int i=0; i> num; array.push_back(num); } for (auto value : array) result += value; cout