Contents

[프로그래머스]문자열을 정수로 바꾸기

Contents

https://programmers.co.kr

풀이:

  1. 문자열 s를 숫자로 변환한 결과를 리턴한다.

코드:

사용언어 : c++

1
2
3
4
5
6
7
8
9
#include <string>
#include <vector>

using namespace std;

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