본문 바로가기
알고리즘

[알고리즘] c++ cpp 문자열 정수로 바꾸기

by keel_im 2020. 10. 21.
반응형

포인트

1. stoi(s) 함수를 사용을 하면string 값을 간단히 숫자로 바꿀 수 있습니다. 

🧶문서는 항상 수정 될 수 있습니다. 비판은 환영합니다. 

#include <string>
#include <vector>

using namespace std;

int solution(string s) {
    int answer = stoi(s);
    return answer;
}

 

반응형

댓글