728x90
반응형
문제
코드
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> numbers, int n) {
int answer = 0;
int i = 0;
for (i = 0; i < numbers.size(); ++i)
{
if (answer <= n)
{
answer += numbers[i];
}
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 조건에 맞게 수열 반환하기 1 (0) | 2023.11.15 |
---|---|
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 1 (0) | 2023.11.14 |
[프로그래머스/C++] Lv.0 할 일 목록 (0) | 2023.11.13 |
[프로그래머스/C++] Lv.0 5명씩 (0) | 2023.11.13 |
[프로그래머스/C++] Lv.0 홀수 vs 짝수 (0) | 2023.11.13 |