코딩테스트/프로그래머스 (55) 썸네일형 리스트형 [Level 1][C++] 문자열을 정수로 바꾸기 #include #include using namespace std;int solution(string s) { int answer = 0; answer = stoi(s); //String을 정수로 바꿔준다. Atoi는 char 배열을 정수로 바꿔준다. return answer;} [Level 1][C++] 짝수와 홀수 #include #include using namespace std;string solution(int num) { string answer = ""; if(num%2 ==0) answer = "Even"; else answer = "Odd"; return answer;} [Level 1][C++] 예산 #include #include #include #include #include using namespace std;vector sort(vector arr){ for (int i = 0; i arr[i + j]) { int temp = arr[i]; arr[i] = arr[i + j]; arr[i + j] = temp; } return arr;}int solution(vector d, int budget) { vector arr1; vector arr2; int average = accumulate(d.begin().. [Level 1][C++] 평균 구하기 #include #include #include using namespace std;double solution(vector arr) { double answer = accumulate(arr.begin(), arr.end(), 0); return answer/arr.size();} [Level 1][C++] 두 정수 사이의 합 #include #include using namespace std;long long solution(int a, int b) { if(a==b) return (long long)a; int min, max; min = (ab)? a:b; long long answer = 0; for(int i=min; i 이전 1 ··· 3 4 5 6 다음