#include <string>
#include <vector>
using namespace std;
int solution(string s) {
int answer = 0;
answer = stoi(s); //String을 정수로 바꿔준다. Atoi는 char 배열을 정수로 바꿔준다.
return answer;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1][C++] 나누어 떨어지는 숫자 배열 (0) | 2024.09.27 |
---|---|
[Level 1][C++] 문자열 내 p와 y의 개수 (0) | 2024.09.27 |
[Level 1][C++] 짝수와 홀수 (0) | 2024.09.27 |
[Level 1][C++] 예산 (0) | 2024.09.27 |
[Level 1][C++] 평균 구하기 (0) | 2024.09.27 |