본문 바로가기

코딩테스트/프로그래머스

[Level 1][C++] 문자열을 정수로 바꾸기

#include <string>
#include <vector>

using namespace std;

int solution(string s) {
     int answer = 0;
     answer = stoi(s);  //String을 정수로 바꿔준다. Atoi는 char 배열을 정수로 바꿔준다. 

     return answer;
}